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

12 lines
385 B
Text
Raw Normal View History

tests/cases/compiler/switchAssignmentCompat.ts(4,10): error TS2323: Type 'typeof Foo' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/switchAssignmentCompat.ts (1 errors) ====
class Foo { }
switch (0) {
case Foo: break; // Error expected
~~~
!!! error TS2323: Type 'typeof Foo' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
}