]> git.lizzy.rs Git - rust.git/blob - src/test/ui/synthetic-param.stderr
f8d14f26f32de05e92519de00c6e4e36814a1e37
[rust.git] / src / test / ui / synthetic-param.stderr
1 error[E0632]: cannot provide explicit generic arguments when `impl Trait` is used in argument position
2   --> $DIR/synthetic-param.rs:20:5
3    |
4 LL |     func::<u8>(42);
5    |     ^^^^^^^^^^
6
7 error[E0632]: cannot provide explicit generic arguments when `impl Trait` is used in argument position
8   --> $DIR/synthetic-param.rs:23:5
9    |
10 LL |     Foo::func::<u8>(42);
11    |     ^^^^^^^^^^^^^^^
12
13 error[E0632]: cannot provide explicit generic arguments when `impl Trait` is used in argument position
14   --> $DIR/synthetic-param.rs:26:5
15    |
16 LL |     Bar::<i8>::func::<u8>(42);
17    |     ^^^^^^^^^^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20