Main.hx 155 B

123456789101112131415
  1. class C {
  2. public final x:Int;
  3. public function new() {
  4. x = 10;
  5. }
  6. }
  7. class Main {
  8. function new() {
  9. new C().x = 10;
  10. }
  11. static function main() {
  12. }
  13. }