blob: dd973bb8439d3a7cfb3e32d104615fc1f2d9860c [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/53333
//@ run-pass
#![allow(unused_imports)]
//@ edition:2018
fn main() {
use std;
let std = "std";
println!("{}", std);
}