rust/src/test/ui/parser/issue-87635.rs
2021-07-31 06:09:54 +09:00

9 lines
158 B
Rust

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