]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-87635.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[rust.git] / tests / 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() {}