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