test262/test/language/statements/class/fields-asi-4.js

19 lines
443 B
JavaScript
Raw Normal View History

2017-10-30 17:43:37 +01:00
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: ASI test in field declarations -- error when generator interpreted as multiplication
esid: sec-automatic-semicolon-insertion
features: [class-fields]
negative:
phase: early
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
class C {
x = 42
*gen() {}
}