TypeScript/tests/baselines/reference/null.types

57 lines
631 B
Plaintext

=== tests/cases/compiler/null.ts ===
var x=null;
>x : any
>null : null
var y=3+x;
>y : any
>3+x : any
>3 : 3
>x : any
var z=3+null;
>z : any
>3+null : any
>3 : 3
>null : null
class C {
>C : C
}
function f() {
>f : () => C
return null;
>null : null
return new C();
>new C() : C
>C : typeof C
}
function g() {
>g : () => number
return null;
>null : null
return 3;
>3 : 3
}
interface I {
x:any;
>x : any
y:number;
>y : number
}
var w:I={x:null,y:3};
>w : I
>{x:null,y:3} : { x: null; y: number; }
>x : null
>null : null
>y : number
>3 : 3