]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0661.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0661.stderr
1 error[E0661]: output operand constraint lacks '=' or '+'
2 --> $DIR/E0661.rs:7:23
3 |
4 LL | llvm_asm!("nop" : "r"(a));
5 | ^^^
6
7 error[E0282]: type annotations needed
8 --> $DIR/E0661.rs:6:9
9 |
10 LL | let a;
11 | ^ consider giving `a` a type
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0282, E0661.
16 For more information about an error, try `rustc --explain E0282`.