mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
20 lines
228 B
D
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
|
|
{
|
|
}
|