Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestCallCall.as
Jindra Petřík 3771e02ba2 Fixed #1006 AS3 - Warning - Function value used where type Boolean was expected
as3_new testdata compilers do not ignore warnings
as3_new testdata without warnings
2022-12-18 23:10:24 +01:00

14 lines
268 B
ActionScript

package tests
{
import flash.utils.getDefinitionByName;
public class TestCallCall
{
public function run() : *
{
var o:* = new getDefinitionByName("Object")();
var o2:* = new (getDefinitionByName("Object"))();
}
}
}