TypeScript/tests/cases/projects/non-relative/consume.ts
2014-07-12 17:30:19 -07:00

14 lines
219 B
TypeScript

import mod = require("decl");
import x = require("lib/foo/a");
import y = require("lib/bar/a");
x.hello();
y.hello();
var str = mod.call();
declare function fail();
if(str !== "success") {
fail();
}