This commit is contained in:
Anders Hejlsberg 2017-11-17 13:21:49 -08:00
parent 85ea473ff3
commit 20b21d3259

View file

@ -75,3 +75,12 @@ class C8 {
"b": number;
0: number;
}
// No strict initialization checks for abstract members
abstract class C9 {
abstract a: number;
abstract b: number | undefined;
abstract c: number | null;
abstract d?: number;
}