mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
13 lines
234 B
TypeScript
13 lines
234 B
TypeScript
// @target: ES6
|
|
// @module: umd
|
|
// @filename: a.ts
|
|
const x = new Promise( ( resolve, reject ) => { resolve( {} ); } );
|
|
export default x;
|
|
|
|
// @filename: b.ts
|
|
import x from './a';
|
|
|
|
( async function() {
|
|
const value = await x;
|
|
}() );
|