TypeScript/tests/baselines/reference/selfReferencesInFunctionParameters.errors.txt

28 lines
1.3 KiB
Plaintext
Raw Normal View History

tests/cases/compiler/selfReferencesInFunctionParameters.ts(1,26): error TS2372: Parameter 'x' cannot be referenced in its initializer.
tests/cases/compiler/selfReferencesInFunctionParameters.ts(4,35): error TS2372: Parameter 'x' cannot be referenced in its initializer.
tests/cases/compiler/selfReferencesInFunctionParameters.ts(8,28): error TS2372: Parameter 'y' cannot be referenced in its initializer.
tests/cases/compiler/selfReferencesInFunctionParameters.ts(11,29): error TS2372: Parameter 'b' cannot be referenced in its initializer.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/selfReferencesInFunctionParameters.ts (4 errors) ====
function foo(x: number = x) {
~
!!! error TS2372: Parameter 'x' cannot be referenced in its initializer.
2014-07-13 01:04:16 +02:00
}
function bar(x0 = "", x: number = x) {
~
!!! error TS2372: Parameter 'x' cannot be referenced in its initializer.
2014-07-13 01:04:16 +02:00
}
class C {
constructor(x = 1, y = y) {
~
!!! error TS2372: Parameter 'y' cannot be referenced in its initializer.
2014-07-13 01:04:16 +02:00
}
bar(a = "", b: string = b.toString()) {
~
!!! error TS2372: Parameter 'b' cannot be referenced in its initializer.
2014-07-13 01:04:16 +02:00
}
}