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

19 lines
429 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, class-fields-public, generators]
2017-10-30 17:43:37 +01:00
negative:
phase: parse
2017-10-30 17:43:37 +01:00
type: SyntaxError
---*/
$DONOTEVALUATE();
2017-10-30 17:43:37 +01:00
class C {
x = 42
*gen() {}
}