1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(2,1): error TS2322: Type 'number' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(3,1): error TS2322: Type 'boolean' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(4,1): error TS2322: Type 'string' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(5,1): error TS2322: Type '{}' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(9,1): error TS2322: Type 'typeof C' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(10,1): error TS2322: Type 'C' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(14,1): error TS2322: Type 'I' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(17,1): error TS2322: Type 'typeof M' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(20,5): error TS2322: Type 'T' is not assignable to type 'void'.
tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts(22,5): error TS2322: Type '<T>(a: T) => void' is not assignable to type 'void'.
==== tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts (10 errors) ====
var x: void;
x = 1;
~
!!! error TS2322: Type 'number' is not assignable to type 'void'.
x = true;
~
!!! error TS2322: Type 'boolean' is not assignable to type 'void'.
x = '';
~
!!! error TS2322: Type 'string' is not assignable to type 'void'.
x = {}
~
!!! error TS2322: Type '{}' is not assignable to type 'void'.
class C { foo: string; }
var c: C;
x = C;
~
!!! error TS2322: Type 'typeof C' is not assignable to type 'void'.
x = c;
~
!!! error TS2322: Type 'C' is not assignable to type 'void'.
interface I { foo: string; }
var i: I;
x = i;
~
!!! error TS2322: Type 'I' is not assignable to type 'void'.
module M { export var x = 1; }
x = M;
~
!!! error TS2322: Type 'typeof M' is not assignable to type 'void'.
function f<T>(a: T) {
x = a;
~
!!! error TS2322: Type 'T' is not assignable to type 'void'.
!!! related TS2208 tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts:19:12: This type parameter might need an `extends void` constraint.
}
x = f;
~
!!! error TS2322: Type '<T>(a: T) => void' is not assignable to type 'void'.
!!! related TS6212 tests/cases/conformance/types/primitives/void/invalidAssignmentsToVoid.ts:22:5: Did you mean to call this expression?
|