summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-53333.rs
blob: ccc9971f93c56e718fefda5cee4748503513b2ba (plain)
1
2
3
4
5
6
7
8
9
// run-pass
#![allow(unused_imports)]
// edition:2018

fn main() {
    use std;
    let std = "std";
    println!("{}", std);
}