Files
rust/tests/ui/delegation/target-expr-pass.stderr

23 lines
450 B
Plaintext
Raw Normal View History

2024-02-07 10:42:01 +08:00
warning: trait `Trait` is never used
--> $DIR/target-expr-pass.rs:17:7
|
LL | trait Trait {
| ^^^^^
|
2025-04-28 13:47:25 +02:00
= note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
2024-02-07 10:42:01 +08:00
warning: struct `F` is never constructed
--> $DIR/target-expr-pass.rs:21:8
|
LL | struct F;
| ^
warning: struct `S` is never constructed
--> $DIR/target-expr-pass.rs:24:8
|
LL | struct S(F);
| ^
warning: 3 warnings emitted
2023-11-26 15:57:31 +03:00