mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
11 lines
224 B
Plaintext
11 lines
224 B
Plaintext
#![feature(prelude_import)]
|
|
#![no_std]
|
|
#[prelude_import]
|
|
use ::std::prelude::rust_2015::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
// needs-asm-support
|
|
// check-pass
|
|
// compile-flags: -Zunpretty=expanded
|
|
global_asm! ("x: .byte 42");
|