rustc/tests/ui/error-codes/E0425.rs
2023-08-02 10:33:26 +02:00

9 lines
80 B
Rust

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