dmd/compiler/test/compilable/test6541.d
2022-07-09 18:53:07 +02:00

10 lines
99 B
D

class C
{
static synchronized func(alias a)() {}
}
void main()
{
int a;
C.func!a();
}