diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/parser/recover-struct.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/parser/recover-struct.rs b/src/test/ui/parser/recover-struct.rs new file mode 100644 index 000000000..bfa5b454c --- /dev/null +++ b/src/test/ui/parser/recover-struct.rs @@ -0,0 +1,7 @@ +fn main() { + struct Test { + Very + Bad //~ ERROR found `Bad` + Stuff + } +} |