mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
277 B
Rust
14 lines
277 B
Rust
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
|
|
#![feature(negative_impls)]
|
|
|
|
// Test a negative impl that "specializes" another negative impl.
|
|
//
|
|
//@ check-pass
|
|
|
|
trait MyTrait {}
|
|
|
|
impl<T> !MyTrait for T {}
|
|
impl !MyTrait for u32 {}
|
|
|
|
fn main() {}
|