Comment #2 by dlang-bugzilla — 2014-03-23T07:38:05Z
I guess it's not related to issue 12316, because the pull that fixed it did not fix this issue.
Comment #3 by k.hara.pg — 2014-04-17T04:11:39Z
This is a compiler issue that current IFTI cannot deduce correct type parameters for the case:
void test12403()
{
void func(K, V)(inout(V[K]) aa)
{
static assert(is(V == const int));
static assert(is(K == int));
}
const(int)[int] m;
func(m); // fails, but should work
}
https://github.com/D-Programming-Language/dmd/pull/3465
Comment #4 by github-bugzilla — 2014-04-18T08:39:15Z