Added tests.

This commit is contained in:
Daniel Rosenwasser 2016-08-22 23:10:05 -07:00
parent 93de502656
commit 0f83fc130e
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,3 @@
class CtorTag { }
CtorTag `Hello world!`;

View File

@ -0,0 +1,6 @@
interface I {
new (...args: any[]): string;
new (): number;
}
var tag: I;
tag `Hello world!`;