]> git.lizzy.rs Git - rust.git/blob - tests/ui/default-method-parsing.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[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() { }