Files
rust/tests/ui/traits/default-method/bound-subst4.stderr
2025-08-19 21:27:10 +02:00

14 lines
321 B
Plaintext

warning: method `h` is never used
--> $DIR/bound-subst4.rs:7:8
|
LL | trait A<T> {
| - method in this trait
LL | fn g(&self, x: usize) -> usize { x }
LL | fn h(&self, x: T) { }
| ^
|
= note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
warning: 1 warning emitted