TypeScript/tests/cases/compiler/cloduleStaticMembers.ts
2014-07-12 17:30:19 -07:00

12 lines
167 B
TypeScript

class Clod {
private static x = 10;
public static y = 10;
}
module Clod {
var p = Clod.x;
var q = x;
var s = Clod.y;
var t = y;
}