Skip to content

Commit 542383f

Browse files
Aaron1011varkor
andcommitted
Fix missing character
Co-Authored-By: varkor <[email protected]>
1 parent 850e3e6 commit 542383f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ui/type-alias-impl-trait/issue-60564.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ where
1818
{
1919
type BitsIter = IterBitsIter<T, E, u8>;
2020
fn iter_bits(self, n: u8) -> Self::BitsIter {
21-
//~^ ERROR defining opaque type use does not fully define opaque typ
21+
//~^ ERROR defining opaque type use does not fully define opaque type
2222
(0u8..n)
2323
.rev()
2424
.map(move |shift| ((self >> T::from(shift)) & T::from(1)).try_into().unwrap())

0 commit comments

Comments
 (0)