mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
448 B
Plaintext
23 lines
448 B
Plaintext
warning: trait `Baz` is never used
|
|
--> $DIR/dyn-supertraits.rs:7:7
|
|
|
|
|
LL | trait Baz: Foo<3> {}
|
|
| ^^^
|
|
|
|
|
= note: `#[warn(dead_code)]` on by default
|
|
|
|
warning: trait `Boz` is never used
|
|
--> $DIR/dyn-supertraits.rs:26:7
|
|
|
|
|
LL | trait Boz: Foo<3> + Foz {}
|
|
| ^^^
|
|
|
|
warning: struct `FozType` is never constructed
|
|
--> $DIR/dyn-supertraits.rs:29:8
|
|
|
|
|
LL | struct FozType;
|
|
| ^^^^^^^
|
|
|
|
warning: 3 warnings emitted
|
|
|