diff options
| author | Jared Roesch <roeschinc@gmail.com> | 2016-09-07 17:22:19 -0700 | 
|---|---|---|
| committer | Jared Roesch <roeschinc@gmail.com> | 2016-09-07 17:22:19 -0700 | 
| commit | a25428269d8cac3ef00162a19dcbb5d5d5c47192 (patch) | |
| tree | b258e17f64fded6db2f0d3398dc1603c62e77e28 /src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs | |
| parent | 9510add6a3148f753776d6f6ac324690dba4a5d5 (diff) | |
| download | rust-a25428269d8cac3ef00162a19dcbb5d5d5c47192.tar.gz rust-a25428269d8cac3ef00162a19dcbb5d5d5c47192.zip | |
Fix duplicate error code
Diffstat (limited to 'src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs')
| -rw-r--r-- | src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs b/src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs index 168148b92fe..fe0e583b20a 100644 --- a/src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs +++ b/src/test/compile-fail/traits-inductive-overflow-supertrait-oibit.rs @@ -14,7 +14,7 @@ #![feature(optin_builtin_traits)] -trait Magic: Copy {} //~ ERROR E0565 +trait Magic: Copy {} //~ ERROR E0568 impl Magic for .. {} fn copy<T: Magic>(x: T) -> (T, T) { (x, x) } | 
