TypeScript/tests/cases/compiler/emitBundleWithShebangAndPrologueDirectives2.ts
Kanchalai Tanglertsampan 489349e089 Add new tests and baselines
2017-02-24 11:42:08 -08:00

16 lines
288 B
TypeScript

// @outFile: outFile.js
// @module: amd
// @target: es5
// @Filename: test.ts
#!/usr/bin/env gjs
"use strict"
class Doo {}
class Scooby extends Doo {}
// @Filename: test1.ts
#!/usr/bin/env gjs
"use strict"
"Another prologue"
class Dood {}
class Scoobyd extends Dood {}