Main.hx 83 B

123456789
  1. class A {
  2. static var A:Int;
  3. }
  4. class Main {
  5. static function main() {
  6. A.A;
  7. }
  8. }