class Test
{
  def Test()
  {}

  def a(Function f)
  {
    f("test");
//    f();
  }

  def b()
  {
    var l = fun [this](x) { this.thi("hello world");
  }
}

  def thing()
  {
    print("hello world");
  }
}
var t$= Test()
t.b()


