about summary refs log tree commit diff
path: root/tests/ui/editions/edition-specific-identifier-shadowing-53333.rs
blob: dd973bb8439d3a7cfb3e32d104615fc1f2d9860c (plain)
1
2
3
4
5
6
7
8
9
10
// https://github.com/rust-lang/rust/issues/53333
//@ run-pass
#![allow(unused_imports)]
//@ edition:2018

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