]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-87635.rs
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.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() {}