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