TypeScript/tests/baselines/reference/systemModuleWithSuperClass.types
2015-07-31 11:55:04 -07:00

21 lines
283 B
Plaintext

=== tests/cases/compiler/foo.ts ===
export class Foo {
>Foo : Foo
a: string;
>a : string
}
=== tests/cases/compiler/bar.ts ===
import {Foo} from './foo';
>Foo : typeof Foo
export class Bar extends Foo {
>Bar : Bar
>Foo : Foo
b: string;
>b : string
}