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

20 lines
228 B
D

// EXTRA_FILES: test9435.d
import test9435;//semantic;
template Visitors()
{
mixin Semantic!(typeof(this));
}
class Node
{
mixin Visitors;
}
class Expression : Node
{
}
class BinaryExp(TokenType op) : Expression
{
}