summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/generic_type_does_not_live_long_enough.stderr
blob: fa79e51e9f79f158a96edf23aefba794d00fd5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
error: at least one trait must be specified
  --> $DIR/generic_type_does_not_live_long_enough.rs:10:24
   |
LL | type WrongGeneric<T> = impl 'static;
   |                        ^^^^^^^^^^^^

error[E0792]: expected generic type parameter, found `&i32`
  --> $DIR/generic_type_does_not_live_long_enough.rs:6:18
   |
LL |     let z: i32 = x;
   |                  ^
...
LL | type WrongGeneric<T> = impl 'static;
   |                   - this generic parameter must be used with a generic type parameter

error[E0310]: the parameter type `T` may not live long enough
  --> $DIR/generic_type_does_not_live_long_enough.rs:14:5
   |
LL |     t
   |     ^ ...so that the type `T` will meet its required lifetime bounds
   |
help: consider adding an explicit lifetime bound...
   |
LL | fn wrong_generic<T: 'static>(t: T) -> WrongGeneric<T> {
   |                   +++++++++

error: aborting due to 3 previous errors

Some errors have detailed explanations: E0310, E0792.
For more information about an error, try `rustc --explain E0310`.