mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
12 lines
223 B
Rust
12 lines
223 B
Rust
#!/usr/bin/env rust
|
|
#![feature(prelude_import)]
|
|
#![no_std]
|
|
extern crate std;
|
|
#[prelude_import]
|
|
use ::std::prelude::rust_2015::*;
|
|
//@ pretty-mode:expanded
|
|
//@ pp-exact:shebang-at-top.pp
|
|
//@ pretty-compare-only
|
|
|
|
fn main() {}
|