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