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

24 lines
878 B
Plaintext
Raw Normal View History

tests/cases/conformance/classes/classExpression.ts(1,15): error TS9003: 'class' expressions are not currently supported.
tests/cases/conformance/classes/classExpression.ts(5,16): error TS9003: 'class' expressions are not currently supported.
tests/cases/conformance/classes/classExpression.ts(10,19): error TS9003: 'class' expressions are not currently supported.
==== tests/cases/conformance/classes/classExpression.ts (3 errors) ====
2014-07-13 01:04:16 +02:00
var x = class C {
~
!!! error TS9003: 'class' expressions are not currently supported.
2014-07-13 01:04:16 +02:00
}
var y = {
foo: class C2 {
~~
!!! error TS9003: 'class' expressions are not currently supported.
2014-07-13 01:04:16 +02:00
}
}
module M {
var z = class C4 {
~~
!!! error TS9003: 'class' expressions are not currently supported.
2014-07-13 01:04:16 +02:00
}
}