summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-87635.rs
blob: f70a87fb0e8fbaad3f9b7cff2eb1e3b1ca78bb4e (plain)
1
2
3
4
5
6
7
8
9
struct Foo {}

impl Foo {
    pub fn bar()
    //~^ ERROR: associated function in `impl` without body
}
//~^ERROR expected one of `->`, `where`, or `{`, found `}`

fn main() {}