]> git.lizzy.rs Git - rust.git/blob - src/test/ui/default-method-parsing.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[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() { }