]> git.lizzy.rs Git - rust.git/blob - src/test/ui/default-method-parsing.rs
parser will not give wrong help message for 'public'
[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() { }