]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/type-parameters-in-field-exprs.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / parser / type-parameters-in-field-exprs.stderr
1 error: field expressions cannot have generic arguments
2   --> $DIR/type-parameters-in-field-exprs.rs:11:10
3    |
4 LL |     f.x::<isize>;
5    |          ^^^^^^^
6
7 error: field expressions cannot have generic arguments
8   --> $DIR/type-parameters-in-field-exprs.rs:13:10
9    |
10 LL |     f.x::<>;
11    |          ^^
12
13 error: field expressions cannot have generic arguments
14   --> $DIR/type-parameters-in-field-exprs.rs:15:7
15    |
16 LL |     f.x::();
17    |       ^^^^^
18
19 error: aborting due to 3 previous errors
20