summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0110.stderr
blob: 10e06ee6d025a4f5169d6b3e9b0b5342ba7ed25e (plain)
1
2
3
4
5
6
7
8
9
error[E0110]: lifetime parameters are not allowed on this type
  --> $DIR/E0110.rs:11:14
   |
LL | type X = u32<'static>; //~ ERROR E0110
   |              ^^^^^^^ lifetime parameter not allowed on this type

error: aborting due to previous error

For more information about this error, try `rustc --explain E0110`.