]> git.lizzy.rs Git - rust.git/blob - tests/ui/default-method-parsing.rs
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / 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() { }