(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test20388.d
// https://issues.dlang.org/show_bug.cgi?id=20388

void main() {
    foo!(mixin("(int a) { return a; }"))();
    foo!(mixin("1+1"))();
    foo!(mixin(0))();
}

void foo(alias t)() {
}