2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: struct takes 0 lifetime arguments but 1 lifetime argument was supplied
|
2021-01-02 18:45:11 +00:00
|
|
|
--> $DIR/issue-18423.rs:4:8
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x: Box<'a, isize>
|
2024-07-05 01:08:44 +00:00
|
|
|
| ^^^ expected 0 lifetime arguments
|
|
|
|
|
|
2024-07-05 01:28:24 +00:00
|
|
|
help: remove the lifetime argument
|
2024-07-05 01:08:44 +00:00
|
|
|
|
|
|
|
|
LL - x: Box<'a, isize>
|
|
|
|
LL + x: Box<, isize>
|
|
|
|
|
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|