TypeScript/tests/cases/compiler/topLevelExports.ts

6 lines
103 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@module: amd
export var foo = 3;
function log(n:number) { return n;}
void log(foo).toString();