diff options
Diffstat (limited to 'tests/ui/pub/pub-ident-struct.rs')
-rw-r--r-- | tests/ui/pub/pub-ident-struct.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ui/pub/pub-ident-struct.rs b/tests/ui/pub/pub-ident-struct.rs new file mode 100644 index 000000000..3930e556e --- /dev/null +++ b/tests/ui/pub/pub-ident-struct.rs @@ -0,0 +1,6 @@ +// run-rustfix + +pub S { +//~^ ERROR missing `struct` for struct definition +} +fn main() {} |