作成されると同時に使用されるラムダまたは匿名関数を報告します。


  fun test() {
      ({ println() })() // 冗長
      (fun() { println() })() // 冗長
  }