]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/type-alias-impl-trait/issue-60564.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / type-alias-impl-trait / issue-60564.stderr
index b838c06cadee34337f41096d7f76eb248fba24a1..bbc93657be32f27501c851460adbfb0554ee0826 100644 (file)
@@ -1,20 +1,14 @@
-error: type parameter `E` is part of concrete type but not used in parameter list for the `impl Trait` type alias
-  --> $DIR/issue-60564.rs:20:49
+error: non-defining opaque type use in defining scope
+  --> $DIR/issue-60564.rs:20:9
    |
-LL |       fn iter_bits(self, n: u8) -> Self::BitsIter {
-   |  _________________________________________________^
-LL | |
-LL | |         (0u8..n)
-LL | |             .rev()
-LL | |             .map(move |shift| ((self >> T::from(shift)) & T::from(1)).try_into().unwrap())
-LL | |     }
-   | |_____^
-
-error: could not find defining uses
-  --> $DIR/issue-60564.rs:8:1
+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 2 previous errors
+error: aborting due to previous error