TypeScript/tests/baselines/reference/reboundBaseClassSymbol.types

17 lines
248 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/reboundBaseClassSymbol.ts ===
interface A { a: number; }
>A : A
>a : number
module Foo {
>Foo : typeof Foo
var A = 1;
>A : number
interface B extends A { b: string; }
>B : B
>A : A
>b : string
}