rust/tests/ui/parser/empty-impl-semicolon.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
71 B
Rust
Raw Normal View History

struct Foo;
impl Foo; //~ ERROR expected `{}`, found `;`
fn main() {}