mirror of
https://github.com/tc39/test262.git
synced 2025-10-17 22:09:07 +02:00
17 lines
401 B
Plaintext
17 lines
401 B
Plaintext
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
desc: The pound signal in the private generator cannot be escaped
|
|
template: syntax/invalid
|
|
info: |
|
|
PrivateName::
|
|
# IdentifierName
|
|
|
|
U+0023 is the escape sequence for #
|
|
features: [class-methods-private, generators]
|
|
---*/
|
|
|
|
//- elements
|
|
* \u0023m() { return 42; }
|