summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/fn_once.rs
blob: 42b8f98e78abf816a4dfaa8193ee4cdebc96b9ff (plain)
1
2
3
4
5
6
7
8
struct Add(usize);

impl FnOnce<(usize,)> for Add {
    type Output = Add;
    extern "rust-call" fn call_once(self, to: (usize,)) -> Add {
        Add(self.0 + to.0)
    }
}