ola-parser 1.0.1

Ola Language Parser
Documentation
contract C {
  struct I {
    u256 b;
    u256 c;
  }
  struct S {
    I a;
  }

  fn f() -> (u256) {
    S  s = S(I(1,2));
    return s.a.b;
  }
}
// ====
// compileToEwasm: also
// compileViaYul: also
// ----
// f()  -> 1