]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-path-shl.stderr
Update ui tests
[rust.git] / src / test / ui / associated-path-shl.stderr
1 error[E0412]: cannot find type `A` in this scope
2   --> $DIR/associated-path-shl.rs:4:14
3    |
4 LL |     let _: <<A>::B>::C;
5    |              ^ not found in this scope
6
7 error[E0412]: cannot find type `A` in this scope
8   --> $DIR/associated-path-shl.rs:5:15
9    |
10 LL |     let _ = <<A>::B>::C;
11    |               ^ not found in this scope
12
13 error[E0412]: cannot find type `A` in this scope
14   --> $DIR/associated-path-shl.rs:6:11
15    |
16 LL |     let <<A>::B>::C;
17    |           ^ not found in this scope
18
19 error[E0412]: cannot find type `A` in this scope
20   --> $DIR/associated-path-shl.rs:7:17
21    |
22 LL |     let 0 ..= <<A>::B>::C;
23    |                 ^ not found in this scope
24
25 error[E0412]: cannot find type `A` in this scope
26   --> $DIR/associated-path-shl.rs:8:7
27    |
28 LL |     <<A>::B>::C;
29    |       ^ not found in this scope
30
31 error: aborting due to 5 previous errors
32
33 For more information about this error, try `rustc --explain E0412`.