TypeScript/tests/baselines/reference/varBlock.errors.txt
2019-05-21 15:22:03 -07:00

103 lines
No EOL
5.2 KiB
Text

tests/cases/compiler/varBlock.ts(8,18): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(11,22): error TS2369: A parameter property is only allowed in a constructor implementation.
tests/cases/compiler/varBlock.ts(11,22): error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
tests/cases/compiler/varBlock.ts(15,17): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(21,18): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(22,22): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(25,21): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(26,26): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(26,35): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(27,29): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(28,35): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(28,45): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(32,13): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(33,18): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(33,26): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(34,21): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(35,27): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(35,37): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/varBlock.ts(39,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'c' must be of type 'any', but here has type 'number'.
tests/cases/compiler/varBlock.ts(39,17): error TS1039: Initializers are not allowed in ambient contexts.
==== tests/cases/compiler/varBlock.ts (20 errors) ====
module m2 {
export var a, b2: number = 10, b;
}
declare module m3 {
var a, b, c;
var a1, b1 = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
class C {
constructor (public c = 10);
~~~~~~~~~~~~~
!!! error TS2369: A parameter property is only allowed in a constructor implementation.
~~~~~~~~~~~~~
!!! error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
}
}
declare var b = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
declare var a2, b2, c2;
declare var da = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
declare var d3, d4 = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
module m3 {
declare var d = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
declare var d2, d3 = 10, d4 = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
export declare var dE = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
export declare var d2E, d3E = 10, d4E = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
}
declare module m4 {
var d = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
var d2, d3 = 10, d4 =10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
export var dE = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
export var d2E, d3E = 10, d4E = 10;
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.
}
declare var c;
declare var c = 10;
~
!!! error TS2403: Subsequent variable declarations must have the same type. Variable 'c' must be of type 'any', but here has type 'number'.
!!! related TS6203 tests/cases/compiler/varBlock.ts:38:13: 'c' was also declared here.
~~
!!! error TS1039: Initializers are not allowed in ambient contexts.