rust/src/test/compile-fail/view-items-at-top.rs

13 lines
126 B
Rust

// xfail-test
extern mod std;
fn f() {
}
use std::net; //~ ERROR view items must be declared at the top
fn main() {
}