8 lines
121 B
Plaintext
8 lines
121 B
Plaintext
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar<String>("x", { it })
|
|
}
|
|
|
|
fun bar<T>(t:T, a: Int->Int) : Int {
|
|
return a(1)
|
|
} |