blob: c549e9caff88207c0a7e48f70ea8e5815af37865 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Flags: --es-staging
6
7class A extends Function {
8 constructor(...args) {
9 super(...args);
10 this.a = 42;
11 this.d = 4.2;
12 this.o = 0;
13 }
14}
15var obj = new A("'use strict';");
16obj.o = 0.1;