about summary refs log tree commit diff
path: root/tests/ui/statics/static-impl.stderr
blob: 77785d1df0e95c6c6a24ee5f7afb363f8a00122e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
warning: method `iter_` is never used
  --> $DIR/static-impl.rs:38:8
   |
LL | trait vec_utils<T> {
   |       --------- method in this trait
LL |     fn length_(&self, ) -> usize;
LL |     fn iter_<F>(&self, f: F) where F: FnMut(&T);
   |        ^^^^^
   |
   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default

warning: 1 warning emitted