summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/syntax/class-expression.js
blob: eb3207be4dd1286539241fa065c36ba8310c6f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 14.5
description: >
    ClassExpression
---*/
var A = class {}

assert.sameValue(typeof A, "function");

reportCompare(0, 0);