summary refs log tree commit diff
path: root/src/test/ui/resolve/issue-5035.stderr
blob: 3c093e068c507eb9cbf708f0d2ceb8ad804cebbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0432]: unresolved import `ImportError`
  --> $DIR/issue-5035.rs:16:5
   |
16 | use ImportError; //~ ERROR unresolved import `ImportError` [E0432]
   |     ^^^^^^^^^^^ no `ImportError` in the root

error[E0404]: expected trait, found type alias `K`
  --> $DIR/issue-5035.rs:13:6
   |
13 | impl K for isize {} //~ ERROR expected trait, found type alias `K`
   |      ^
   |      |
   |      did you mean `I`?
   |      type aliases cannot be used for traits

error: cannot continue compilation due to previous error