Comment #0 by monkeyworks12 — 2013-10-07T16:20:26Z
void test(string str, A...)(typeof([A]) a)
{
}
void main(string[] args)
{
test!("a b c") = [1, 2, 3];
}
Comment #1 by yebblies — 2013-11-13T22:57:23Z
I get
testx.d(1): Error: undefined identifier A
testx.d(1): Error: undefined identifier A
testx.d(7): Error: not a property test!"a b c"
An no ice.
Possibly fixed?
Comment #2 by monkeyworks12 — 2013-11-13T23:25:39Z
(In reply to comment #1)
> I get
>
> testx.d(1): Error: undefined identifier A
> testx.d(1): Error: undefined identifier A
> testx.d(7): Error: not a property test!"a b c"
>
> An no ice.
>
> Possibly fixed?
Those are some weird errors, but it looks like the ICE is no longer happening. Should I make a new bug report for the errors?