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
313 B
Plaintext
Raw Normal View History

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