rust/src/test/compile-fail/trait-keyword.rs

5 lines
108 B
Rust
Raw Normal View History

iface foo { } //~ WARN `iface` is deprecated; use `trait`
fn main() {
x //~ ERROR unresolved name: x
}