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

32 lines
795 B
Plaintext
Raw Normal View History

2023-11-26 12:57:31 +00:00
warning: the feature `fn_delegation` is incomplete and may not be safe to use and/or cause compiler crashes
--> $DIR/target-expr-pass.rs:3:12
|
LL | #![feature(fn_delegation)]
| ^^^^^^^^^^^^^
|
= note: see issue #118212 <https://github.com/rust-lang/rust/issues/118212> for more information
= note: `#[warn(incomplete_features)]` on by default
2024-02-07 02:42:01 +00:00
warning: trait `Trait` is never used
--> $DIR/target-expr-pass.rs:17:7
|
LL | trait Trait {
| ^^^^^
|
= note: `#[warn(dead_code)]` on by default
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: 4 warnings emitted
2023-11-26 12:57:31 +00:00