blob: fa3b4888c12bc14b8ffcda87178c811e6f94e0ba [file] [log] [blame]
struct A(T)
{
mixin B!(T, A!(T));
}
A!(int) x;