ラムダ式の外にある不要な return ラベルを報告します。

例:


  fun test() {
      return@test
  }

クイックフィックス適用後:


  fun test() {
      return
  }