tests/cases/conformance/es6/templates/taggedTemplateWithConstructableTag02.ts(6,1): error TS2349: This expression is not callable.
  Type 'I' has no call signatures.


==== tests/cases/conformance/es6/templates/taggedTemplateWithConstructableTag02.ts (1 errors) ====
    interface I {
        new (...args: any[]): string;
        new (): number;
    }
    var tag: I;
    tag `Hello world!`;
    ~~~
!!! error TS2349: This expression is not callable.
!!! error TS2349:   Type 'I' has no call signatures.