blob: 9007b992f78bd3a588c592c3db40a65309e43bb0 [file] [log] [blame]
class C {
constructor() {
this.foo = 'bar';
}
bar() {
}
}
assertEqual(new C().foo, 'bar');
test(function() {
return new C();
});