about summary refs log tree commit diff
path: root/tests/ui/issues/issue-53333.rs
blob: 468b7d8075fe1a8b4427a34059973d67eb1e5df1 (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);
}