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