(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test9435.d
// EXTRA_FILES: test9434.d
import test9434;//expression;

enum TokenType { Dot }

template Tok(string type)
{
    enum Tok = TokenType.Dot;
}

template Semantic(T)
{
    invariant(){}
}

template Semantic(T) if (is(T == BinaryExp!(Tok!".")))
{
}