about summary refs log tree commit diff
path: root/src/test/ui/method-missing-call.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/method-missing-call.rs
parentd4e51a8fb286444a8c276a05a1c3ba6ba8ca6576 (diff)
downloadrust-1f5b201affc48dcf0b637caa9596c11d83e1db94.tar.gz
rust-1f5b201affc48dcf0b637caa9596c11d83e1db94.zip
Remove NOTE/HELP annotations from UI tests
Diffstat (limited to 'src/test/ui/method-missing-call.rs')
-rw-r--r--src/test/ui/method-missing-call.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/ui/method-missing-call.rs b/src/test/ui/method-missing-call.rs
index b13d4250ee9..7a6ea94d977 100644
--- a/src/test/ui/method-missing-call.rs
+++ b/src/test/ui/method-missing-call.rs
@@ -30,7 +30,6 @@ fn main() {
     let point: Point = Point::new();
     let px: isize =  point
                         .get_x;//~ ERROR attempted to take value of method `get_x` on type `Point`
-                        //~^ HELP maybe a `()` to call it is missing
 
     // Ensure the span is useful
     let ys = &[1,2,3,4,5,6,7];
@@ -38,5 +37,4 @@ fn main() {
               .map(|x| x)
               .filter(|&&x| x == 1)
               .filter_map; //~ ERROR attempted to take value of method `filter_map` on type
-              //~^ HELP maybe a `()` to call it is missing
 }