TypeScript/tests/cases/projects/outputdir_mixed_subfolder/test.ts
2014-07-12 17:30:19 -07:00

11 lines
193 B
TypeScript

/// <reference path='ref/m1.ts'/>
/// <reference path='ref/m2.ts'/>
var a1 = 10;
class c1 {
public p1: number;
}
var instance1 = new c1();
function f1() {
return instance1;
}