Array implicit conversions subvert type system

Gregor Richards Richards at codu.org
Fri Nov 24 20:23:31 PST 2006


void eatFruit(Fruit[] yum) { ... }

void pickApples()
{
     Apple[] a;
     for (int i = 0; i < 100; i++) { a ~= new Apple(); }
     eatFruit(a); // nope, can't eat it, it's Apples, not fruit
}



More information about the Digitalmars-d mailing list