TypeScript/tests/baselines/reference/symbolType18.types
2015-04-15 16:44:20 -07:00

26 lines
376 B
Plaintext

=== 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
>"object" : string
x;
>x : Foo
}
else {
x;
>x : symbol | Foo
}