From 7a25a7ce8df3ba8b41915e240fedd8bf94867137 Mon Sep 17 00:00:00 2001 From: Ozaren Date: Sun, 16 Dec 2018 13:01:26 -0500 Subject: [PATCH] Changed expected error message for TryFrom Reason: Due to changes in bounds of `TryFrom` from `From` to `Into` --- 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 e8b2c84c0df0..8ca085c3a4bb 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::From; + where T: std::convert::Into; error: aborting due to 3 previous errors