]> git.lizzy.rs Git - rust.git/blob - src/test/ui/E0661.rs
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / E0661.rs
1 #![feature(asm)]
2
3 fn main() {
4     let a;
5     asm!("nop" : "r"(a));
6     //~^ ERROR E0661
7 }