Hi,
I found this post saying it was fixed (Peter Farland)
Vector contents not being type-checked by new compiler?
But thebugseems back.
For example, this should not compile:
var v:Vector.<Bitmap> = new Vector.<Bitmap>;
v.push(new Bitmap());
v[0].varThatDoesNotExistInBitmap = true; // Should not compile
Runtime error :
Error #1056: Cannot create property varThatDoesNotExistInBitmap on flash.display.Bitmap
Thx