summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr')
-rw-r--r--tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr b/tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr
index f32e0404e..0306c8af8 100644
--- a/tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr
+++ b/tests/ui/resolve/typo-suggestion-for-variable-with-name-similar-to-struct-field.stderr
@@ -1,20 +1,20 @@
error[E0425]: cannot find value `config` in this scope
--> $DIR/typo-suggestion-for-variable-with-name-similar-to-struct-field.rs:7:16
|
+LL | config: String,
+ | -------------- a field by that name exists in `Self`
+...
LL | Self { config }
- | ^^^^^^
- | |
- | a field by this name exists in `Self`
- | help: a local variable with a similar name exists: `cofig`
+ | ^^^^^^ help: a local variable with a similar name exists: `cofig`
error[E0425]: cannot find value `config` in this scope
--> $DIR/typo-suggestion-for-variable-with-name-similar-to-struct-field.rs:11:20
|
+LL | config: String,
+ | -------------- a field by that name exists in `Self`
+...
LL | println!("{config}");
- | ^^^^^^
- | |
- | a field by this name exists in `Self`
- | help: a local variable with a similar name exists: `cofig`
+ | ^^^^^^ help: a local variable with a similar name exists: `cofig`
error[E0425]: cannot find value `config` in this scope
--> $DIR/typo-suggestion-for-variable-with-name-similar-to-struct-field.rs:15:20
@@ -25,7 +25,7 @@ LL | println!("{config}");
help: you might have meant to use the available field
|
LL | println!("{self.config}");
- | ~~~~~~~~~~~
+ | +++++
help: a local variable with a similar name exists
|
LL | println!("{cofig}");
@@ -43,7 +43,7 @@ LL | fn ba() {}
help: you might have meant to refer to the associated function
|
LL | Self::bah;
- | ~~~~~~~~~
+ | ++++++
help: a function with a similar name exists
|
LL | ba;
@@ -61,7 +61,7 @@ LL | const BARR: u32 = 3;
help: you might have meant to use the associated `const`
|
LL | Self::BAR;
- | ~~~~~~~~~
+ | ++++++
help: a constant with a similar name exists
|
LL | BARR;
@@ -79,7 +79,7 @@ LL | type Bar = String;
help: you might have meant to use the associated type
|
LL | let foo: Self::Baz = "".to_string();
- | ~~~~~~~~~
+ | ++++++
help: a type alias with a similar name exists
|
LL | let foo: Bar = "".to_string();
@@ -97,7 +97,7 @@ LL | fn ba() {}
help: you might have meant to call the method
|
LL | self.baz();
- | ~~~~~~~~
+ | +++++
help: a function with a similar name exists
|
LL | ba();