]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-101540.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / parser / issues / issue-101540.rs
1 struct S1 {
2     struct S2 {
3     //~^ ERROR structs are not allowed in struct definitions
4     }
5 }
6
7 fn main() {}