]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/empty-impl-semicolon.rs
Auto merge of #106916 - lukas-code:overlapping-substs, r=estebank
[rust.git] / tests / ui / parser / empty-impl-semicolon.rs
1 struct Foo;
2 impl Foo; //~ ERROR expected `{}`, found `;`
3
4 fn main() {}