Files
kotlin-fork/idea/testData/shortenRefs/constructor/SAMConstructorFromLambda.kt.after
T

8 lines
128 B
Plaintext
Vendored

import java.util.concurrent.Executors
fun foo() {
Executors.callable(
Runnable { -> },
Unit
)
}