summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/subclass/derived-class-return-override-with-boolean.js
blob: 5e62e661da6ef27a53ad76097bec5780dc973a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 9.2.2
description: >
    [[Construct]] ( argumentsList, newTarget)

    ...
    13. If result.[[type]] is return, then
      ...
      c. If result.[[value]] is not undefined, throw a TypeError exception.
    ...

    `return true;`

---*/
class Base {
  constructor() {}
}
class Derived extends Base {
  constructor() {
    super();

    return true;
  }
}

assert.throws(TypeError, function() {
  new Derived();
});

reportCompare(0, 0);