2022-09-03 08:05:48 +00:00
|
|
|
#![feature(prelude_import)]
|
|
|
|
#![no_std]
|
|
|
|
#[prelude_import]
|
|
|
|
use ::std::prelude::rust_2015::*;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate std;
|
2022-10-19 11:34:00 -07:00
|
|
|
//@ needs-asm-support
|
2022-09-03 08:05:48 +00:00
|
|
|
//@ check-pass
|
|
|
|
//@ compile-flags: -Zunpretty=expanded
|
|
|
|
global_asm! ("x: .byte 42");
|