mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
10 lines
305 B
Plaintext
10 lines
305 B
Plaintext
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`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|