rust/src/test/ui/issues/issue-14092.stderr

22 lines
561 B
Plaintext
Raw Normal View History

error[E0107]: missing generics for struct `Box`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-14092.rs:1:11
|
2018-02-23 00:42:32 +00:00
LL | fn fn1(0: Box) {}
| ^^^ expected at least 1 type argument
|
note: struct defined here, with at least 1 type parameter: `T`
--> $SRC_DIR/alloc/src/boxed.rs:LL:COL
|
LL | pub struct Box<
| ^^^
LL | T: ?Sized,
| -
help: use angle brackets to add missing type argument
|
LL | fn fn1(0: Box<T>) {}
| ^^^
error: aborting due to previous error
2018-08-22 01:12:23 +00:00
For more information about this error, try `rustc --explain E0107`.