]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/asm-clobbers.rs
Rollup merge of #67422 - GuillaumeGomez:cleanup-err-codes, r=Dylan-DPC
[rust.git] / src / test / pretty / asm-clobbers.rs
1 #![feature(asm)]
2
3 pub fn main() { unsafe { asm!("" : : : "hello", "world") }; }