From a1be81300fdc6906dc3cb19019747e622901badc Mon Sep 17 00:00:00 2001 From: Ozaren Date: Sun, 16 Dec 2018 13:59:12 -0500 Subject: [PATCH] Fixed `Into` bound on `TryFrom` error. fix to last commit --- src/test/ui/e0119/conflict-with-std.stderr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ui/e0119/conflict-with-std.stderr b/src/test/ui/e0119/conflict-with-std.stderr index 8ca085c3a4bb..fd016941d258 100644 --- a/src/test/ui/e0119/conflict-with-std.stderr +++ b/src/test/ui/e0119/conflict-with-std.stderr @@ -25,7 +25,7 @@ LL | impl TryFrom for X { //~ ERROR conflicting implementations | = note: conflicting implementation in crate `core`: - impl std::convert::TryFrom for T - where T: std::convert::Into; + where U: std::convert::Into; error: aborting due to 3 previous errors