quickjs-done/tests/detect_module/3.js

9 lines
171 B
JavaScript
Raw Normal View History

2025-01-06 20:48:15 +00:00
/*---
negative:
phase: parse
type: SyntaxError
---*/
// the import statement makes it a module but `await = 42` is a SyntaxError
import * as _ from "dummy"
await = 42