summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0393.rs
blob: bdd4deafc838e164c510d4a709ec5dad65da8147 (plain)
1
2
3
4
5
6
7
trait A<T=Self> {}

fn together_we_will_rule_the_galaxy(son: &A) {}
//~^ ERROR E0393

fn main() {
}