about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOzaren <krishna.sd.2012@gmail.com>2018-12-16 13:59:12 -0500
committerOzaren <krishna.sd.2012@gmail.com>2018-12-16 13:59:12 -0500
commita1be81300fdc6906dc3cb19019747e622901badc (patch)
treec5d36093380a19a4d850bc6128513c620a05551f
parent7a25a7ce8df3ba8b41915e240fedd8bf94867137 (diff)
downloadrust-a1be81300fdc6906dc3cb19019747e622901badc.tar.gz
rust-a1be81300fdc6906dc3cb19019747e622901badc.zip
Fixed `Into` bound on `TryFrom` error.
fix to last commit
-rw-r--r--src/test/ui/e0119/conflict-with-std.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/e0119/conflict-with-std.stderr b/src/test/ui/e0119/conflict-with-std.stderr
index 8ca085c3a4b..fd016941d25 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<X> for X { //~ ERROR conflicting implementations
    |
    = note: conflicting implementation in crate `core`:
            - impl<T, U> std::convert::TryFrom<U> for T
-             where T: std::convert::Into<U>;
+             where U: std::convert::Into<T>;
 
 error: aborting due to 3 previous errors