blob: 548c46f1233222dce1c4061a645a3b4fdf93e8bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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)]` on by default
warning: 1 warning emitted
|