]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/suggestions/suggest-methods.stderr
improve unknown enum variant errors
[rust.git] / src / test / ui / suggestions / suggest-methods.stderr
index b7727cf03a4e7e50c3f8414199e8dfec85788453..ad4a4deb5a8863f60f10653b4cf21410e37ec6e4 100644 (file)
@@ -4,25 +4,25 @@ error[E0599]: no method named `bat` found for type `Foo` in the current scope
 LL | struct Foo;
    | ----------- method `bat` not found for this
 ...
-LL |     f.bat(1.0); //~ ERROR no method named
-   |       ^^^ help: did you mean: `bar`
+LL |     f.bat(1.0);
+   |       ^^^ help: there is a method with a similar name: `bar`
 
 error[E0599]: no method named `is_emtpy` found for type `std::string::String` in the current scope
   --> $DIR/suggest-methods.rs:21:15
    |
-LL |     let _ = s.is_emtpy(); //~ ERROR no method named
-   |               ^^^^^^^^ help: did you mean: `is_empty`
+LL |     let _ = s.is_emtpy();
+   |               ^^^^^^^^ help: there is a method with a similar name: `is_empty`
 
 error[E0599]: no method named `count_eos` found for type `u32` in the current scope
   --> $DIR/suggest-methods.rs:25:19
    |
-LL |     let _ = 63u32.count_eos(); //~ ERROR no method named
-   |                   ^^^^^^^^^ help: did you mean: `count_zeros`
+LL |     let _ = 63u32.count_eos();
+   |                   ^^^^^^^^^ help: there is a method with a similar name: `count_zeros`
 
 error[E0599]: no method named `count_o` found for type `u32` in the current scope
   --> $DIR/suggest-methods.rs:28:19
    |
-LL |     let _ = 63u32.count_o(); //~ ERROR no method named
+LL |     let _ = 63u32.count_o();
    |                   ^^^^^^^
 
 error: aborting due to 4 previous errors