Files
kotlin-fork/idea/testData/intentions/anonymousFunctionToLambda/constructor.kt.after
T
2015-12-17 11:11:18 +03:00

5 lines
74 B
Plaintext
Vendored

class Foo(f: () -> Unit)
fun main(args: String) {
Foo { val p = 1 }
}