]> git.lizzy.rs Git - rust.git/blob - src/test/ui/default-method-parsing.rs
Merge commit '7ea7cd165ad6705603852771bf82cc2fd6560db5' into clippyup2
[rust.git] / src / test / ui / default-method-parsing.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 trait Foo {
5     fn m(&self, _:isize) { }
6 }
7
8 pub fn main() { }