test262/test/language/statements/class/elements/fields-asi-same-line-2.js

18 lines
437 B
JavaScript

// Copyright (C) 2019 Jason Orendorff. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: ASI test in field declarations -- error when method on same line after initializer
esid: sec-automatic-semicolon-insertion
features: [class, class-fields-public]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
class C {
field = 1 /* no ASI here */ method(){}
}