mirror of https://github.com/tc39/test262.git
28 lines
673 B
JavaScript
28 lines
673 B
JavaScript
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
description: >
|
||
|
An ImportClause may contain both an ImportedDefaultBinding and NamedImports
|
||
|
esid: sec-imports
|
||
|
info: |
|
||
|
Syntax
|
||
|
|
||
|
ImportClause:
|
||
|
ImportedDefaultBinding
|
||
|
NameSpaceImport
|
||
|
NamedImports
|
||
|
ImportedDefaultBinding , NameSpaceImport
|
||
|
ImportedDefaultBinding , NamedImports
|
||
|
flags: [module]
|
||
|
---*/
|
||
|
|
||
|
assert.throws(ReferenceError, function() {
|
||
|
typeof x;
|
||
|
});
|
||
|
|
||
|
assert.sameValue(y, undefined);
|
||
|
|
||
|
export default 3;
|
||
|
export var attr;
|
||
|
import x, { attr as y } from './instn-named-bndng-dflt-named.js';
|