mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
22 lines
829 B
Text
22 lines
829 B
Text
warning: trait bound str: Sized does not depend on any type or lifetime parameters
|
|
--> $DIR/trivial-bounds-inconsistent-sized.rs:14:31
|
|
|
|
|
LL | struct S(str, str) where str: Sized;
|
|
| ^^^^^
|
|
|
|
|
= note: `#[warn(trivial_bounds)]` on by default
|
|
|
|
warning: trait bound for<'a> T<(dyn A + 'a)>: Sized does not depend on any type or lifetime parameters
|
|
--> $DIR/trivial-bounds-inconsistent-sized.rs:17:49
|
|
|
|
|
LL | fn unsized_local() where for<'a> T<dyn A + 'a>: Sized {
|
|
| ^^^^^
|
|
|
|
warning: trait bound str: Sized does not depend on any type or lifetime parameters
|
|
--> $DIR/trivial-bounds-inconsistent-sized.rs:22:35
|
|
|
|
|
LL | fn return_str() -> str where str: Sized {
|
|
| ^^^^^
|
|
|
|
warning: 3 warnings emitted
|
|
|