]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0661.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / error-codes / E0661.rs
1 // ignore-emscripten
2
3 #![feature(llvm_asm)]
4
5 fn main() {
6     let a; //~ ERROR type annotations needed
7     llvm_asm!("nop" : "r"(a));
8     //~^ ERROR E0661
9 }