mirror of https://github.com/tc39/test262.git
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
|
/*---
|
||
|
esid: pending
|
||
|
description: >
|
||
|
Hashbang comments should not require a newline afterwards
|
||
|
info: |
|
||
|
HashbangComment::
|
||
|
#! SingleLineCommentChars[opt]
|
||
|
features: [hashbang]
|
||
|
---*/
|
||
|
|
||
|
assert.sameValue(eval('#!'), undefined);
|