A lambda expression that is neither invoked nor assigned to a variable has no effect on program execution and is likely unintentional.
例:
fun foo() {
{} // Warning: Lambda expression is never invoked
}
クイックフィックス適用後:
fun foo() {
run {} // Lambda is now invoked via the 'run' function
}