blob: 26c711731bfefc79dd06b091c4d2158557780b8f [file] [log] [blame]
import test9435;//semantic;
template Visitors()
{
mixin Semantic!(typeof(this));
}
class Node
{
mixin Visitors;
}
class Expression : Node
{
}
class BinaryExp(TokenType op) : Expression
{
}