Files
T
2015-03-18 18:49:18 +03:00

13 lines
162 B
Kotlin
Vendored

package test
public class B {
public fun test(): String {
var p = "fail"
A().test {
p = "OK"
}
return p
}
}