2016-02-06 11:42:17 -06:00
|
|
|
// Verify that '>' is not both expected and found at the same time, as it used
|
|
|
|
// to happen in #24780. For example, following should be an error:
|
2020-10-29 10:26:42 -05:00
|
|
|
// expected one of ..., `>`, ... found `>`.
|
2016-02-06 11:42:17 -06:00
|
|
|
|
2021-12-04 12:05:30 -06:00
|
|
|
fn foo() -> Vec<usize>> { //~ ERROR expected one of `!`, `+`, `::`, `where`, or `{`, found `>`
|
2016-02-06 11:42:17 -06:00
|
|
|
Vec::new()
|
|
|
|
}
|
2020-10-25 16:20:44 -05:00
|
|
|
|
|
|
|
fn main() {}
|