Skip to content

Commit a1be813

Browse files
committed
Fixed Into bound on TryFrom error.
fix to last commit
1 parent 7a25a7c commit a1be813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ui/e0119/conflict-with-std.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ LL | impl TryFrom<X> for X { //~ ERROR conflicting implementations
2525
|
2626
= note: conflicting implementation in crate `core`:
2727
- impl<T, U> std::convert::TryFrom<U> for T
28-
where T: std::convert::Into<U>;
28+
where U: std::convert::Into<T>;
2929

3030
error: aborting due to 3 previous errors
3131

0 commit comments

Comments
 (0)