blob: 675e63a1d37ec8d1002fa918a52d2c5beec7f100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2016 Microsoft, Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Brian Terlson <brian.terlson@microsoft.com>
esid: pending
description: >
Await is an identifier in global scope
---*/
var await = 1;
assert.sameValue(await, 1);
reportCompare(0, 0);
|