Update outdated test fixture

This commit is contained in:
Diogo Franco (Kovensky)
2017-08-12 14:10:19 +09:00
parent 9243c78ea2
commit cd66657f34

View File

@@ -1,7 +1,16 @@
class C {
// Output should not use `_initialiseProps`
constructor(T) {
this.y = 0;
Object.defineProperty(this, "x", {
enumerable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "y", {
enumerable: true,
writable: true,
value: 0
});
}
}