blob: 6e849649aca2a87a43b775240970644002da2d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error[E0661]: output operand constraint lacks '=' or '+'
--> $DIR/E0661.rs:7:18
|
LL | asm!("nop" : "r"(a));
| ^^^
error[E0282]: type annotations needed
--> $DIR/E0661.rs:6:9
|
LL | let a;
| ^ consider giving `a` a type
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0282, E0661.
For more information about an error, try `rustc --explain E0282`.
|