rust/src/test/ui/parser/issues/issue-87635.rs

10 lines
158 B
Rust
Raw Normal View History

2021-07-30 16:09:54 -05:00
struct Foo {}
impl Foo {
pub fn bar()
//~^ ERROR: expected `;`, found `}`
//~| ERROR: associated function in `impl` without body
}
fn main() {}