TypeScript/tests/baselines/reference/shebangError.js
2015-08-03 11:24:33 +10:00

9 lines
207 B
TypeScript

//// [shebangError.ts]
var foo = 'Shebang is only allowed on the first line';
#!/usr/bin/env node
//// [shebangError.js]
var foo = 'Shebang is only allowed on the first line';
!/usr/bin / env;
node;