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