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

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

5 lines
110 B
Rust
Raw Normal View History

2022-11-14 13:29:17 -06:00
fn main() {
1_u32.MAX();
//~^ ERROR no method named `MAX` found for type `u32` in the current scope
}