TypeScript/tests/baselines/reference/noImplicitAnyParametersInModule.errors.txt
2014-09-12 13:35:07 -07:00

115 lines
6.1 KiB
Plaintext

tests/cases/compiler/noImplicitAnyParametersInModule.ts(7,19): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(13,19): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(13,22): error TS7006: Parameter 'y' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(13,25): error TS7006: Parameter 'z' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(16,19): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(16,30): error TS7006: Parameter 'z' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(19,19): error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(22,19): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(22,22): error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(25,19): error TS7006: Parameter 'x1' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(26,31): error TS7006: Parameter 'y2' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(27,19): error TS7006: Parameter 'x3' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(27,23): error TS7006: Parameter 'y3' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(33,18): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(36,18): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(36,21): error TS7006: Parameter 'y' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(36,24): error TS7006: Parameter 'z' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(39,18): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(39,29): error TS7006: Parameter 'z' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(42,18): error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(45,18): error TS7006: Parameter 'x' implicitly has an 'any' type.
tests/cases/compiler/noImplicitAnyParametersInModule.ts(45,21): error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
==== tests/cases/compiler/noImplicitAnyParametersInModule.ts (22 errors) ====
module M {
// No implicit-'any' errors.
function m_f1(): void { }
// Implicit-'any' error for x.
function m_f2(x): void { }
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
// No implicit-'any' errors.
function m_f3(x: any): void { }
// Implicit-'any' errors for x, y, and z.
function m_f4(x, y, z): void { }
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
~
!!! error TS7006: Parameter 'y' implicitly has an 'any' type.
~
!!! error TS7006: Parameter 'z' implicitly has an 'any' type.
// Implicit-'any' errors for x and z.
function m_f5(x, y: any, z): void { }
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
~
!!! error TS7006: Parameter 'z' implicitly has an 'any' type.
// Implicit-'any[]' error for r.
function m_f6(...r): void { }
~~~~
!!! error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
// Implicit-'any'/'any[]' errors for x and r.
function m_f7(x, ...r): void { }
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
~~~~
!!! error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
// Implicit-'any' errors for x1, y2, x3, and y3.
function m_f8(x1, y1: number): any;
~~
!!! error TS7006: Parameter 'x1' implicitly has an 'any' type.
function m_f8(x2: string, y2): any;
~~
!!! error TS7006: Parameter 'y2' implicitly has an 'any' type.
function m_f8(x3, y3): any { }
~~
!!! error TS7006: Parameter 'x3' implicitly has an 'any' type.
~~
!!! error TS7006: Parameter 'y3' implicitly has an 'any' type.
// No implicit-'any' errors.
var m_f9 = () => "";
// Implicit-'any' error for x.
var m_f10 = (x) => "";
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
// Implicit-'any' errors for x, y, and z.
var m_f11 = (x, y, z) => "";
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
~
!!! error TS7006: Parameter 'y' implicitly has an 'any' type.
~
!!! error TS7006: Parameter 'z' implicitly has an 'any' type.
// Implicit-'any' errors for x and z.
var m_f12 = (x, y: any, z) => "";
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
~
!!! error TS7006: Parameter 'z' implicitly has an 'any' type.
// Implicit-'any[]' errors for r.
var m_f13 = (...r) => "";
~~~~
!!! error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
// Implicit-'any'/'any[]' errors for x and r.
var m_f14 = (x, ...r) => "";
~
!!! error TS7006: Parameter 'x' implicitly has an 'any' type.
~~~~
!!! error TS7019: Rest parameter 'r' implicitly has an 'any[]' type.
}