about summary refs log tree commit diff
path: root/src/test/ui/method-missing-call.rs
diff options
context:
space:
mode:
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
 }