]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/empty-impl-semicolon.rs
Account for ADT bodies and struct expressions
[rust.git] / src / test / ui / parser / empty-impl-semicolon.rs
1 struct Foo;
2 impl Foo; //~ ERROR expected `{}`, found `;`
3
4 fn main() {}