summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/doc-before-struct-rbrace-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/doc-before-struct-rbrace-2.rs')
-rw-r--r--tests/ui/parser/doc-before-struct-rbrace-2.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/parser/doc-before-struct-rbrace-2.rs b/tests/ui/parser/doc-before-struct-rbrace-2.rs
new file mode 100644
index 000000000..2b2aadf79
--- /dev/null
+++ b/tests/ui/parser/doc-before-struct-rbrace-2.rs
@@ -0,0 +1,9 @@
+struct X {
+ a: u8 /// document
+ //~^ ERROR found a documentation comment that doesn't document anything
+ //~| HELP if a comment was intended use `//`
+}
+
+fn main() {
+ let y = X {a: 1};
+}