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

10 lines
121 B
D

struct Algebraic(T...)
{
T t;
}
struct This;
struct While(T) { T[] body; }
alias Stmt = Algebraic!(While!(This));