2021-01-02 18:45:11 +00:00
|
|
|
error[E0107]: missing generics for struct `Box`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-14092.rs:1:11
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn fn1(0: Box) {}
|
2021-02-18 20:01:44 +00:00
|
|
|
| ^^^ expected at least 1 generic argument
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
2021-02-18 20:01:44 +00:00
|
|
|
help: add missing generic argument
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
|
|
|
LL | fn fn1(0: Box<T>) {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-08-22 01:12:23 +00:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|