blob: ab1b5f45e5c8ad2cb954115abb7c3f08e41fa19c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![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");
|