mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
121 B
D
10 lines
121 B
D
struct Algebraic(T...)
|
|
{
|
|
T t;
|
|
}
|
|
|
|
struct This;
|
|
|
|
struct While(T) { T[] body; }
|
|
|
|
alias Stmt = Algebraic!(While!(This));
|