TypeScript/tests/cases/conformance/es6/templates/taggedTemplateWithConstructableTag02.ts
Daniel Rosenwasser 0f83fc130e Added tests.
2016-08-22 23:10:05 -07:00

6 lines
106 B
TypeScript

interface I {
new (...args: any[]): string;
new (): number;
}
var tag: I;
tag `Hello world!`;