http://d.puremagic.com/issues/show_bug.cgi?id=2650
------- Comment #1 from dhasenan at gmail.com 2009-02-07 14:32 -------
Failing example:
void main ()
{
auto s = "hello"d;
auto sd = s[];
if (cast(TypeInfo_Array)typeid(typeof(sd)) !is null)
{
assert (false, "not array");
}
}
--