rust/tests/ui/suggestions/dont-suggest-ufcs-for-const.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
307 B
Plaintext
Raw Normal View History

2022-11-14 19:29:17 +00:00
error[E0599]: no method named `MAX` found for type `u32` in the current scope
--> $DIR/dont-suggest-ufcs-for-const.rs:2:11
|
LL | 1_u32.MAX();
| ^^^ method not found in `u32`
2022-11-14 19:29:17 +00:00
error: aborting due to 1 previous error
2022-11-14 19:29:17 +00:00
For more information about this error, try `rustc --explain E0599`.