mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
11 lines
180 B
Rust
11 lines
180 B
Rust
// https://github.com/rust-lang/rust/issues/53333
|
|
//@ run-pass
|
|
#![allow(unused_imports)]
|
|
//@ edition:2018
|
|
|
|
fn main() {
|
|
use std;
|
|
let std = "std";
|
|
println!("{}", std);
|
|
}
|