]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0393.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.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 }