mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
10 lines
340 B
Rust
10 lines
340 B
Rust
// Check that a suggestion is issued if there are too many `<`s in a
|
|
// generic argument list, and that the parser recovers properly.
|
|
|
|
fn main() {
|
|
foo::<<<<Ty<i32>>();
|
|
//~^ ERROR: unmatched angle brackets
|
|
//~| ERROR: cannot find function `foo` in this scope [E0425]
|
|
//~| ERROR: cannot find type `Ty` in this scope [E0412]
|
|
}
|