summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/issue-60564.stderr
blob: bbc93657be32f27501c851460adbfb0554ee0826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: non-defining opaque type use in defining scope
  --> $DIR/issue-60564.rs:20:9
   |
LL |         (0u8..n).rev().map(move |shift| ((self >> T::from(shift)) & T::from(1)).try_into().unwrap())
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: used non-generic type `u8` for generic parameter
  --> $DIR/issue-60564.rs:8:25
   |
LL | type IterBitsIter<T, E, I> = impl std::iter::Iterator<Item = I>;
   |                         ^

error: aborting due to previous error