summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/asm5.d
blob: b525a2131ce100e57881a9ad35509386c8e1814a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// https://issues.dlang.org/show_bug.cgi?id=20593
// { dg-do compile }
// { dg-options "-Wall -Wdeprecated -Werror" }
module asm5;

void test(int a)
{
    asm
    {
        "cpuid" : : "a" a;  // { dg-error "'a' must be surrounded by parentheses" }
    }
}