TypeScript/tests/cases/compiler/systemModuleWithSuperClass.ts
2015-07-31 11:55:04 -07:00

12 lines
184 B
TypeScript

// @module: system
// @Filename: foo.ts
export class Foo {
a: string;
}
// @Filename: bar.ts
import {Foo} from './foo';
export class Bar extends Foo {
b: string;
}