TypeScript/tests/baselines/reference/switchAssignmentCompat.errors.txt
2014-11-05 12:26:03 -08:00

12 lines
385 B
Plaintext

tests/cases/compiler/switchAssignmentCompat.ts(4,10): error TS2322: Type 'typeof Foo' is not assignable to type 'number'.
==== tests/cases/compiler/switchAssignmentCompat.ts (1 errors) ====
class Foo { }
switch (0) {
case Foo: break; // Error expected
~~~
!!! error TS2322: Type 'typeof Foo' is not assignable to type 'number'.
}