diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/pub/pub-ident-struct-with-lifetime.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/ui/pub/pub-ident-struct-with-lifetime.rs b/src/test/ui/pub/pub-ident-struct-with-lifetime.rs new file mode 100644 index 000000000..2feb02660 --- /dev/null +++ b/src/test/ui/pub/pub-ident-struct-with-lifetime.rs @@ -0,0 +1,4 @@ +pub S<'a> { +//~^ ERROR missing `struct` for struct definition +} +fn main() {} |