summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0520.rs
blob: ead78b7ffa2c40005838c27da367f1b4bea92c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![feature(specialization)]
//~^ WARN the feature `specialization` is incomplete

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() {
}