]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-const/associated-const-no-item.stderr
Various minor/cosmetic improvements to code
[rust.git] / src / test / ui / associated-const / associated-const-no-item.stderr
1 error[E0599]: no associated item named `ID` found for type `i32` in the current scope
2   --> $DIR/associated-const-no-item.rs:16:23
3    |
4 LL | const X: i32 = <i32>::ID;
5    |                -------^^
6    |                |
7    |                associated item not found in `i32`
8    |
9    = help: items from traits can only be used if the trait is implemented and in scope
10    = note: the following trait defines an item `ID`, perhaps you need to implement it:
11            candidate #1: `Foo`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.