rust/tests/ui/traits/issue-22384.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
315 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0576]: cannot find associated type `foobar` in trait `Copy`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-22384.rs:6:21
2018-07-15 16:11:54 -05:00
|
LL | <<i32 as Copy>::foobar as Trait>::foo();
| ^^^^^^ not found in `Copy`
error: aborting due to 1 previous error
2018-07-15 16:11:54 -05:00
2019-10-13 15:07:11 -05:00
For more information about this error, try `rustc --explain E0576`.