]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/issues/issue-87635.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / parser / issues / issue-87635.rs
1 struct Foo {}
2
3 impl Foo {
4 pub fn bar()
5 //~^ ERROR: associated function in `impl` without body
6 }
7 //~^ERROR expected one of `->`, `where`, or `{`, found `}`
8
9 fn main() {}