TypeScript/tests/cases/compiler/qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts

6 lines
77 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
module Alpha {
export var x = 100;
}
class Beta extends Alpha.x {
}