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