1d84103cce
#KT-6453 Obsolete
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
package test
|
|
|
|
class A() {
|
|
private val x = "OK"
|
|
internal inline fun foo(p: (String) -> Unit) {
|
|
p(x)
|
|
}
|
|
} |