about summary refs log tree commit diff
path: root/src/test/ui/empty-struct-unit-expr.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2017-12-10 23:29:24 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2017-12-14 23:26:39 +0300
commit1f5b201affc48dcf0b637caa9596c11d83e1db94 (patch)
treeeb7044df493bdd2882ee0051003e796202e6f5b0 /src/test/ui/empty-struct-unit-expr.rs
parentd4e51a8fb286444a8c276a05a1c3ba6ba8ca6576 (diff)
downloadrust-1f5b201affc48dcf0b637caa9596c11d83e1db94.tar.gz
rust-1f5b201affc48dcf0b637caa9596c11d83e1db94.zip
Remove NOTE/HELP annotations from UI tests
Diffstat (limited to 'src/test/ui/empty-struct-unit-expr.rs')
-rw-r--r--src/test/ui/empty-struct-unit-expr.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/ui/empty-struct-unit-expr.rs b/src/test/ui/empty-struct-unit-expr.rs
index 9655007604d..c33960193b0 100644
--- a/src/test/ui/empty-struct-unit-expr.rs
+++ b/src/test/ui/empty-struct-unit-expr.rs
@@ -25,9 +25,7 @@ fn main() {
     let e2 = Empty2(); //~ ERROR expected function, found `Empty2`
     let e4 = E::Empty4();
     //~^ ERROR expected function, found `E::Empty4` [E0618]
-    //~| HELP did you mean to write `E::Empty4`?
     let xe2 = XEmpty2(); //~ ERROR expected function, found `empty_struct::XEmpty2`
     let xe4 = XE::XEmpty4();
     //~^ ERROR expected function, found `XE::XEmpty4` [E0618]
-    //~| HELP did you mean to write `XE::XEmpty4`?
 }