]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-consts/associated-const-no-item.stderr
add tests for 107090
[rust.git] / tests / ui / associated-consts / 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 | 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: `Foo` defines an item `ID`, perhaps you need to implement it
9   --> $DIR/associated-const-no-item.rs:1:1
10    |
11 LL | trait Foo {
12    | ^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0599`.