TypeScript/tests/baselines/reference/augmentedClassWithPrototypePropertyOnModule.js

10 lines
260 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [augmentedClassWithPrototypePropertyOnModule.ts]
declare module m {
var f;
var prototype; // This should be error since prototype would be static property on class m
}
declare class m {
}
//// [augmentedClassWithPrototypePropertyOnModule.js]