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