Which platform?
Simon
Can't reproduce with SVN.
Best,
Nicolas
package ;
class Main
{
static function main()
{
new A();
}
}
class A
{
var f:Null<Int>;
public function new(?f:Null<Int>)
{
this.f = f;
trace(f);
trace(this.f);
}
}
I get null for both traces on flash 8 and flash 9. Which version of
Flash Player are you using?
Simon