os-rust/src/test/ui/asm/issue-72570.rs

13 lines
238 B
Rust
Raw Normal View History

2020-06-05 12:03:43 +02:00
// compile-flags: -Zsave-analysis
// needs-asm-support
2020-06-05 12:03:43 +02:00
// Also test for #72960
2020-05-26 11:27:27 +01:00
#![feature(asm)]
fn main() {
unsafe {
asm!("", in("invalid") "".len());
2020-05-26 11:27:27 +01:00
//~^ ERROR: invalid register `invalid`: unknown register
}
}