blob: 2ec8b71f199a2e35fbe583f514fac856fcb52ee2 [file] [log] [blame]
// 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
esid: sec-automatic-semicolon-insertion
features: [class, class-fields-public]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
class C {
field /* no ASI here */ method(){}
}