]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0425.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / test / ui / error-codes / E0425.rs
1 trait Foo {
2     fn bar() {
3         elf; //~ ERROR E0425
4     }
5 }
6
7 fn main () {
8 }