mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 07:13:24 +03:00
22 lines
280 B
Rust
22 lines
280 B
Rust
#![feature(specialization)]
|
|
|
|
trait SpaceLlama {
|
|
fn fly(&self);
|
|
}
|
|
|
|
impl<T> SpaceLlama for T {
|
|
default fn fly(&self) {}
|
|
}
|
|
|
|
impl<T: Clone> SpaceLlama for T {
|
|
fn fly(&self) {}
|
|
}
|
|
|
|
impl SpaceLlama for i32 {
|
|
default fn fly(&self) {}
|
|
//~^ ERROR E0520
|
|
}
|
|
|
|
fn main() {
|
|
}
|