blob: 80ccd127d506d698f9b7ae402073ce05c0f74eb4 (
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");
|