mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 12:35:15 +00:00
12 lines
239 B
Rust
12 lines
239 B
Rust
#![feature(negative_impls)]
|
|
#![feature(specialization)]
|
|
//~^ WARN the feature `specialization` is incomplete
|
|
|
|
trait MyTrait {
|
|
type Foo;
|
|
}
|
|
|
|
default impl !MyTrait for u32 {} //~ ERROR negative impls cannot be default impls
|
|
|
|
fn main() {}
|