rust/src/test/pretty/asm-clobbers.rs

4 lines
80 B
Rust
Raw Normal View History

#![feature(asm)]
pub fn main() { unsafe { asm!("" : : : "hello", "world") }; }