summary refs log tree commit diff
path: root/src/test/ui/parser/issue-87635.rs
blob: da74c1877b16500239587a384792f577a029f83e (plain)
1
2
3
4
5
6
7
8
9
struct Foo {}

impl Foo {
    pub fn bar()
    //~^ ERROR: expected `;`, found `}`
    //~| ERROR: associated function in `impl` without body
}

fn main() {}