rust/tests/ui/drop_bounds.stderr

17 lines
479 B
Text
Raw Normal View History

error: Bounds of the form `T: Drop` are useless. Use `std::mem::needs_drop` to detect if a type has drop glue.
--> $DIR/drop_bounds.rs:2:11
|
LL | fn foo<T: Drop>() {}
| ^^^^
|
= note: `#[deny(clippy::drop_bounds)]` on by default
error: Bounds of the form `T: Drop` are useless. Use `std::mem::needs_drop` to detect if a type has drop glue.
2019-02-19 03:36:58 +01:00
--> $DIR/drop_bounds.rs:5:8
|
2019-02-19 03:36:58 +01:00
LL | T: Drop,
| ^^^^
error: aborting due to 2 previous errors