diff options
| author | Ozaren <krishna.sd.2012@gmail.com> | 2018-12-16 13:59:12 -0500 |
|---|---|---|
| committer | Ozaren <krishna.sd.2012@gmail.com> | 2018-12-16 13:59:12 -0500 |
| commit | a1be81300fdc6906dc3cb19019747e622901badc (patch) | |
| tree | c5d36093380a19a4d850bc6128513c620a05551f | |
| parent | 7a25a7ce8df3ba8b41915e240fedd8bf94867137 (diff) | |
| download | rust-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.stderr | 2 |
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 |
