rust/tests/ui/error-codes/E0425.rs

9 lines
80 B
Rust

trait Foo {
fn bar() {
elf; //~ ERROR E0425
}
}
fn main () {
}