blob: 7678f6bc3450c2f12c39f04e2d432658a985fabf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![feature(prelude_import)]
#![no_std]
#[macro_use]
extern crate std;
#[prelude_import]
use ::std::prelude::rust_2015::*;
//@ needs-asm-support
//@ check-pass
//@ compile-flags: -Zunpretty=expanded
//@ edition: 2015
global_asm! ("x: .byte 42");
|