1d83d75a82
#KT-7522 Fixed
10 lines
150 B
Plaintext
Vendored
10 lines
150 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
fun test() {
|
|
val a = Foo(2, "2") { p: Int -> p + 1 }
|
|
}
|
|
|
|
class Foo(i: Int, s: String, function: (Int) -> Int) {
|
|
|
|
}
|