mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
14 lines
278 B
Plaintext
14 lines
278 B
Plaintext
|
#![feature(prelude_import)]
|
||
|
#![no_std]
|
||
|
#[prelude_import]
|
||
|
use ::std::prelude::rust_2015::*;
|
||
|
#[macro_use]
|
||
|
extern crate std;
|
||
|
//@ revisions: normal expanded
|
||
|
//@[expanded] check-pass
|
||
|
//@[expanded]compile-flags: -Zunpretty=expanded
|
||
|
|
||
|
extern "路濫狼á́́" fn foo() {}
|
||
|
|
||
|
fn main() {}
|