mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
36 lines
873 B
TypeScript
36 lines
873 B
TypeScript
|
|
// Invoke function call on value of type 'any' with no type arguments
|
|
var anyVar: any;
|
|
anyVar(0);
|
|
anyVar('');
|
|
|
|
// Invoke function call on value of type 'any' with type arguments
|
|
// These should be errors
|
|
anyVar<string>('hello');
|
|
anyVar<number>();
|
|
anyVar<Window>(undefined);
|
|
|
|
|
|
// Invoke function call on value of a subtype of Function with no call signatures with no type arguments
|
|
interface SubFunc extends Function {
|
|
prop: number;
|
|
}
|
|
var subFunc: SubFunc;
|
|
subFunc(0);
|
|
subFunc('');
|
|
subFunc();
|
|
|
|
|
|
// Invoke function call on value of a subtype of Function with no call signatures with type arguments
|
|
// These should be errors
|
|
subFunc<number>(0);
|
|
subFunc<string>('');
|
|
subFunc<any>();
|
|
|
|
// Invoke function call on value of type Function with no call signatures with type arguments
|
|
// These should be errors
|
|
var func: Function;
|
|
func<number>(0);
|
|
func<string>('');
|
|
func<any>();
|