mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-10 15:25:54 -06:00
Added tests.
This commit is contained in:
parent
93de502656
commit
0f83fc130e
@ -0,0 +1,3 @@
|
||||
class CtorTag { }
|
||||
|
||||
CtorTag `Hello world!`;
|
||||
@ -0,0 +1,6 @@
|
||||
interface I {
|
||||
new (...args: any[]): string;
|
||||
new (): number;
|
||||
}
|
||||
var tag: I;
|
||||
tag `Hello world!`;
|
||||
Loading…
x
Reference in New Issue
Block a user