1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#![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() { }