Skip to content

Commit 7f648c7

Browse files
committed
fix
1 parent e3d02ee commit 7f648c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ui/inference/issue-71584.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ LL | d = d % n.into();
66
| |
77
| type must be known at this point
88
|
9-
= note: cannot satisfy `<u64 as Rem<_>>::Output == u64`
9+
= note: cannot satisfy `<u16 as Rem<_>>::Output == u16`
1010
help: try using a fully qualified path to specify the expected types
1111
|
12-
LL | d = d % <u32 as Into<T>>::into(n);
12+
LL | d = d % <u16 as Into<T>>::into(n);
1313
| +++++++++++++++++++++++ ~
1414

1515
error: aborting due to 1 previous error

0 commit comments

Comments
 (0)