-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5497317
commit 540e12f
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fn main() { | ||
1_u32.MAX(); | ||
//~^ ERROR no method named `MAX` found for type `u32` in the current scope | ||
} |
15 changes: 15 additions & 0 deletions
15
src/test/ui/suggestions/dont-suggest-ufcs-for-const.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
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(); | ||
| ------^^^-- | ||
| | | | ||
| | this is an associated function, not a method | ||
| help: use associated function syntax instead: `u32::MAX()` | ||
| | ||
= note: found the following associated functions; to be used as methods, functions must have a `self` parameter | ||
= note: the candidate is defined in an impl for the type `u32` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0599`. |