summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0661.stderr
blob: fe3887e72604defe2ece8654b3a8ce82ef836103 (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:23
   |
LL |     llvm_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`.