rust/tests/ui/coherence/coherence-orphan.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
337 B
Rust
Raw Normal View History

// aux-build:coherence_orphan_lib.rs
#![feature(negative_impls)]
2015-01-13 20:21:19 +01:00
extern crate coherence_orphan_lib as lib;
use lib::TheTrait;
struct TheType;
impl TheTrait<usize> for isize { }
//~^ ERROR E0117
impl TheTrait<TheType> for isize { }
impl TheTrait<isize> for TheType { }
impl !Send for Vec<isize> { }
//~^ ERROR E0117
2015-01-13 20:21:19 +01:00
fn main() { }