]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/coherence-orphan.rs
d7cd68e73c3498acc75b0557ceca6224e450e455
[rustc.git] / src / test / compile-fail / coherence-orphan.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-tidy-linelength
12 // aux-build:coherence-orphan-lib.rs
13
14 #![feature(optin_builtin_traits)]
15
16 extern crate "coherence-orphan-lib" as lib;
17
18 use lib::TheTrait;
19
20 struct TheType;
21
22 impl TheTrait<usize> for isize { } //~ ERROR E0117
23
24 impl TheTrait<TheType> for isize { }
25
26 impl TheTrait<isize> for TheType { }
27
28 impl !Send for Vec<isize> { } //~ ERROR E0117
29 //~^ ERROR conflicting
30
31 fn main() { }