blob: 7ba1702dfed8e141f816c1e21ac1f9501dbcc8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![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
//@ edition: 2015
global_asm! ("x: .byte 42");
|