]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0393.rs
0c1a369806d8f399cb460a9b04d1a75cd91a6b20
[rustc.git] / src / test / ui / error-codes / E0393.rs
1 trait A<T=Self> {}
2
3 fn together_we_will_rule_the_galaxy(son: &dyn A) {}
4 //~^ ERROR E0393
5
6 fn main() {
7 }