]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/unmatched-langle-1.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / parser / unmatched-langle-1.stderr
1 error: unmatched angle brackets
2 --> $DIR/unmatched-langle-1.rs:5:10
3 |
4 LL | foo::<<<<Ty<i32>>();
5 | ^^^ help: remove extra angle brackets
6
7 error[E0412]: cannot find type `Ty` in this scope
8 --> $DIR/unmatched-langle-1.rs:5:14
9 |
10 LL | foo::<<<<Ty<i32>>();
11 | ^^ not found in this scope
12
13 error[E0425]: cannot find function `foo` in this scope
14 --> $DIR/unmatched-langle-1.rs:5:5
15 |
16 LL | foo::<<<<Ty<i32>>();
17 | ^^^ not found in this scope
18
19 error: aborting due to 3 previous errors
20
21 Some errors have detailed explanations: E0412, E0425.
22 For more information about an error, try `rustc --explain E0412`.