mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
23 lines
829 B
Plaintext
23 lines
829 B
Plaintext
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
|
|
|