]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trivial-bounds/trivial-bounds-inconsistent-sized.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / trivial-bounds / trivial-bounds-inconsistent-sized.stderr
1 warning: Trait bound str: std::marker::Sized does not depend on any type or lifetime parameters
2   --> $DIR/trivial-bounds-inconsistent-sized.rs:24:31
3    |
4 LL | struct S(str, str) where str: Sized;
5    |                               ^^^^^
6    |
7    = note: #[warn(trivial_bounds)] on by default
8
9 warning: Trait bound for<'a> T<(dyn A + 'a)>: std::marker::Sized does not depend on any type or lifetime parameters
10   --> $DIR/trivial-bounds-inconsistent-sized.rs:26:45
11    |
12 LL | fn unsized_local() where for<'a> T<A + 'a>: Sized {
13    |                                             ^^^^^
14
15 warning: Trait bound str: std::marker::Sized does not depend on any type or lifetime parameters
16   --> $DIR/trivial-bounds-inconsistent-sized.rs:30:35
17    |
18 LL | fn return_str() -> str where str: Sized {
19    |                                   ^^^^^
20