rust/src/test/ui/hidden-rt-injection.rs
2018-12-25 21:08:33 -07:00

9 lines
185 B
Rust

// This is testing that users can't access the runtime crate.
mod m {
// The rt has been called both 'native' and 'rt'
use native; //~ ERROR unresolved import
}
fn main() { }