blob: d897a17d529a070b549768c5d67953de87258c96 [file] [log] [blame]
struct TypeObj
{
alias This = typeof(this);
mixin template MixinTempl()
{
int value;
}
}
ref TypeObj Obj()
{
static TypeObj a;
return a;
}
void func()
{
mixin Obj.This.MixinTempl; // ok
mixin Obj.MixinTempl; // fixed: "MixinTempl!()" is not defined
}