blob: 01ba09697fc824b1fadd04e9baf904fcf91e8bd6 [file] [log] [blame] [edit]
// 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 async generator cannot be escaped
template: syntax/invalid
info: |
PrivateName::
# IdentifierName
U+0023 is the escape sequence for #
features: [class-methods-private, async-iteration]
---*/
//- elements
async * \u0023m() { return 42; }