TypeScript/tests/cases/compiler/noImplicitAnyFunctions.ts
2014-07-12 17:30:19 -07:00

22 lines
323 B
TypeScript

// @noImplicitAny: true
declare function f1();
declare function f2(): any;
function f3(x) {
}
function f4(x: any) {
return x;
}
function f5(x: any): any {
return x;
}
function f6(x: string, y: number);
function f6(x: string, y: string): any;
function f6(x: string, y) {
return null;
}