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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
80 B
Rust
Raw Normal View History

2016-08-17 16:45:10 -05:00
trait Foo {
fn bar() {
elf; //~ ERROR E0425
2016-08-17 16:45:10 -05:00
}
}
fn main () {
}