报告立即创建和使用的 lambda 或匿名函数。


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