Added test

This commit is contained in:
Arthur Ozga 2015-08-06 17:27:52 -07:00
parent 1421c39d8c
commit a693e82e27

View File

@ -0,0 +1,8 @@
abstract class A { }
// var AA: typeof A;
var AAA: new() => A;
// AA = A; // okay
AAA = A; // error.
AAA = "asdf";