summaryrefslogtreecommitdiffstats
path: root/tests/ui/pub/pub-ident-struct-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pub/pub-ident-struct-2.rs')
-rw-r--r--tests/ui/pub/pub-ident-struct-2.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/pub/pub-ident-struct-2.rs b/tests/ui/pub/pub-ident-struct-2.rs
new file mode 100644
index 000000000..50db4039d
--- /dev/null
+++ b/tests/ui/pub/pub-ident-struct-2.rs
@@ -0,0 +1,8 @@
+// #60115
+
+mod foo {
+ pub bar();
+ //~^ ERROR missing `struct` for struct definition
+}
+
+fn main() {}