]> git.proxmox.com Git - rustc.git/blob - src/test/ui/trivial-bounds/trivial-bounds-inconsistent-sized.stderr
New upstream version 1.41.1+dfsg1
[rustc.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:14: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:17:49
11 |
12 LL | fn unsized_local() where for<'a> T<dyn 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:22:35
17 |
18 LL | fn return_str() -> str where str: Sized {
19 | ^^^^^
20