babel/test/fixtures/traceur/Modules/Error_MissingExport.module.js
2015-01-04 19:40:09 +11:00

8 lines
313 B
JavaScript

// Error: :5:12: 'y' is not exported by 'test/feature/Modules/resources/x.js'
// Error: :5:15: 'z' is not exported by 'test/feature/Modules/resources/x.js'
// Error: :6:9: 'w' is not exported by 'test/feature/Modules/resources/x.js'
import {x, y, z} from './resources/x.js';
import {w} from './resources/x.js';