rust/tests/ui/error-codes/E0425.rs
2023-01-11 09:32:08 +00:00

9 lines
80 B
Rust

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