TypeScript/tests/baselines/reference/symbolType18.types

25 lines
356 B
Plaintext
Raw Normal View History

2015-02-05 21:30:22 +01:00
=== tests/cases/conformance/es6/Symbols/symbolType18.ts ===
interface Foo { prop }
>Foo : Foo
>prop : any
var x: symbol | Foo;
>x : symbol | Foo
>Foo : Foo
x;
>x : symbol | Foo
if (typeof x === "object") {
>typeof x === "object" : boolean
>typeof x : string
>x : symbol | Foo
x;
>x : Foo
}
else {
x;
>x : symbol | Foo
}