Skip to content

Commit 0f83fc1

Browse files
Added tests.
1 parent 93de502 commit 0f83fc1

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class CtorTag { }
2+
3+
CtorTag `Hello world!`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
interface I {
2+
new (...args: any[]): string;
3+
new (): number;
4+
}
5+
var tag: I;
6+
tag `Hello world!`;

0 commit comments

Comments
 (0)