summaryrefslogtreecommitdiffstats
path: root/tests/ui/pub/pub-ident-struct-4.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pub/pub-ident-struct-4.stderr')
-rw-r--r--tests/ui/pub/pub-ident-struct-4.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/pub/pub-ident-struct-4.stderr b/tests/ui/pub/pub-ident-struct-4.stderr
new file mode 100644
index 000000000..90c7138e5
--- /dev/null
+++ b/tests/ui/pub/pub-ident-struct-4.stderr
@@ -0,0 +1,13 @@
+error: missing `struct` for struct definition
+ --> $DIR/pub-ident-struct-4.rs:3:4
+ |
+LL | pub T(String);
+ | ^
+ |
+help: add `struct` here to parse `T` as a public struct
+ |
+LL | pub struct T(String);
+ | ++++++
+
+error: aborting due to previous error
+