summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/suggest-methods.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/suggestions/suggest-methods.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/suggestions/suggest-methods.stderr')
-rw-r--r--tests/ui/suggestions/suggest-methods.stderr30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/suggestions/suggest-methods.stderr b/tests/ui/suggestions/suggest-methods.stderr
new file mode 100644
index 000000000..03cb9c779
--- /dev/null
+++ b/tests/ui/suggestions/suggest-methods.stderr
@@ -0,0 +1,30 @@
+error[E0599]: no method named `bat` found for struct `Foo` in the current scope
+ --> $DIR/suggest-methods.rs:18:7
+ |
+LL | struct Foo;
+ | ---------- method `bat` not found for this struct
+...
+LL | f.bat(1.0);
+ | ^^^ help: there is a method with a similar name: `bar`
+
+error[E0599]: no method named `is_emtpy` found for struct `String` in the current scope
+ --> $DIR/suggest-methods.rs:21:15
+ |
+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();
+ | ^^^^^^^^^ 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();
+ | ^^^^^^^ help: there is a method with a similar name: `count_ones`
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0599`.