]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/trait-object-vs-lifetime.stderr
Move generic arg / param validation to `create_substs_for_generic_args`
[rust.git] / src / test / ui / traits / trait-object-vs-lifetime.stderr
1 error[E0224]: at least one trait is required for an object type
2   --> $DIR/trait-object-vs-lifetime.rs:9:23
3    |
4 LL |     let _: S<'static, dyn 'static +>;
5    |                       ^^^^^^^^^^^^^
6
7 error[E0107]: wrong number of lifetime arguments: expected 1, found 2
8   --> $DIR/trait-object-vs-lifetime.rs:11:23
9    |
10 LL |     let _: S<'static, 'static>;
11    |                       ^^^^^^^ unexpected lifetime argument
12
13 error[E0107]: wrong number of type arguments: expected 1, found 0
14   --> $DIR/trait-object-vs-lifetime.rs:11:12
15    |
16 LL |     let _: S<'static, 'static>;
17    |            ^^^^^^^^^^^^^^^^^^^ expected 1 type argument
18
19 error[E0224]: at least one trait is required for an object type
20   --> $DIR/trait-object-vs-lifetime.rs:14:14
21    |
22 LL |     let _: S<dyn 'static +, 'static>;
23    |              ^^^^^^^^^^^^^
24
25 error[E0747]: type provided when a lifetime was expected
26   --> $DIR/trait-object-vs-lifetime.rs:14:14
27    |
28 LL |     let _: S<dyn 'static +, 'static>;
29    |              ^^^^^^^^^^^^^
30
31 error: aborting due to 5 previous errors
32
33 Some errors have detailed explanations: E0107, E0747.
34 For more information about an error, try `rustc --explain E0107`.