]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-path-shl.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / associated-path-shl.stderr
CommitLineData
b7449926 1error[E0412]: cannot find type `A` in this scope
0731742a 2 --> $DIR/associated-path-shl.rs:4:14
b7449926 3 |
532ac7d7 4LL | let _: <<A>::B>::C;
b7449926
XL
5 | ^ not found in this scope
6
7error[E0412]: cannot find type `A` in this scope
0731742a 8 --> $DIR/associated-path-shl.rs:5:15
b7449926 9 |
532ac7d7 10LL | let _ = <<A>::B>::C;
b7449926
XL
11 | ^ not found in this scope
12
13error[E0412]: cannot find type `A` in this scope
0731742a 14 --> $DIR/associated-path-shl.rs:6:11
b7449926 15 |
532ac7d7 16LL | let <<A>::B>::C;
b7449926
XL
17 | ^ not found in this scope
18
19error[E0412]: cannot find type `A` in this scope
0731742a 20 --> $DIR/associated-path-shl.rs:7:17
b7449926 21 |
532ac7d7 22LL | let 0 ..= <<A>::B>::C;
b7449926
XL
23 | ^ not found in this scope
24
25error[E0412]: cannot find type `A` in this scope
416331ca 26 --> $DIR/associated-path-shl.rs:8:7
b7449926 27 |
532ac7d7 28LL | <<A>::B>::C;
b7449926
XL
29 | ^ not found in this scope
30
416331ca 31error: aborting due to 5 previous errors
b7449926 32
416331ca 33For more information about this error, try `rustc --explain E0412`.