rust/src/test/ui/resolve/issue-21221-4.stderr

14 lines
403 B
Plaintext
Raw Normal View History

error[E0405]: cannot find trait `T` in this scope
--> $DIR/issue-21221-4.rs:20:6
|
2018-02-22 18:42:32 -06:00
LL | impl T for Foo {}
| ^ not found in this scope
2017-05-10 06:19:29 -05:00
help: possible candidate is found in another module, you can import it into scope
2017-06-28 01:16:04 -05:00
|
2017-08-17 04:03:59 -05:00
18 | use issue_21221_4::T;
|
error: cannot continue compilation due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0405"