ldc/tests/codegen/asm_constraints.d
Martin 2616261fd2 Revise all LDC-specific errors/warnings/deprecs and insert backticks
For DMD's new syntax highlighting. I grepped in all .{h,cpp} files only.
2017-08-03 22:53:49 +02:00

7 lines
177 B
D

// RUN: not %ldc -c -w %s 2>&1 | FileCheck %s
void main () {
import ldc.llvmasm : __asm;
// CHECK: Error: `__asm` constraint argument is invalid
__asm("", "][");
}