about summary refs log tree commit diff
path: root/tests/ui/default-method-parsing.rs
blob: 5001d58f0a48e32e753c7ce742facfe43bdbf7cd (plain)
1
2
3
4
5
6
7
8
// check-pass
// pretty-expanded FIXME #23616

trait Foo {
    fn m(&self, _:isize) { }
}

pub fn main() { }