static_init.gravity 137 B

12345678910111213
  1. #unittest {
  2. name: "Test static init.";
  3. error: NONE;
  4. result: 50;
  5. };
  6. class foo {
  7. static var a = 50;
  8. }
  9. func main() {
  10. return foo.a;
  11. }