rust/tests/ui/union/union-suggest-field.stderr
Esteban Küber f0845adb0c Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00

40 lines
1.1 KiB
Plaintext

error[E0560]: union `U` has no field named `principle`
--> $DIR/union-suggest-field.rs:10:17
|
LL | let u = U { principle: 0 };
| ^^^^^^^^^ unknown field
|
help: a field with a similar name exists
|
LL - let u = U { principle: 0 };
LL + let u = U { principal: 0 };
|
error[E0609]: no field `principial` on type `U`
--> $DIR/union-suggest-field.rs:14:15
|
LL | let w = u.principial;
| ^^^^^^^^^^ unknown field
|
help: a field with a similar name exists
|
LL - let w = u.principial;
LL + let w = u.principal;
|
error[E0615]: attempted to take value of method `calculate` on type `U`
--> $DIR/union-suggest-field.rs:18:15
|
LL | let y = u.calculate;
| ^^^^^^^^^ method, not a field
|
help: use parentheses to call the method
|
LL | let y = u.calculate();
| ++
error: aborting due to 3 previous errors
Some errors have detailed explanations: E0560, E0609, E0615.
For more information about an error, try `rustc --explain E0560`.