8 lines
158 B
Plaintext
Vendored
8 lines
158 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar<String, Int, Int>("x", 1, 2, { it })
|
|
}
|
|
|
|
fun <T, V, K> bar(t: T, v: V, k: K, a: (Int)->Int): Int {
|
|
return a(1)
|
|
} |