rust/src/test/ui/error-codes/E0425.rs
2018-12-25 21:08:33 -07:00

9 lines
80 B
Rust

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