mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-01 15:40:55 +03:00
7 lines
177 B
D
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("", "][");
|
|
}
|