v2 / vlib / v / checker / tests / asm_mov_requires_two_operands.out
7 lines · 7 sloc · 226 bytes · 738855bb58c1b27aa7ceeddaadbdeb373baf686f
Raw
1vlib/v/checker/tests/asm_mov_requires_two_operands.vv:3:3: error: asm instruction `mov` expects 2 operands, but got 0
2 1 | fn main() {
3 2 | asm amd64 {
4 3 | mov
5 | ~~~
6 4 | }
7 5 | }
8