blob: 5f33fb3c375a45751d35c1e74f2eae4580017f2c [file] [log] [blame]
module imports.a11447;
struct A { }
void map(alias dg)(A r) { }
struct TTT
{
static auto yyy(A a)
{
map!(b => 0)(a);
}
}
void bar() { }