Fix tests after f4f5359725

This commit is contained in:
Alexander Udalov
2017-11-27 16:03:38 +01:00
parent f586bd4a34
commit 386a3fb5ce
11 changed files with 32 additions and 34 deletions
@@ -0,0 +1,14 @@
class X {
val result: String
inline get() = "OK"
fun x(): String {
return go(::result)
}
}
inline fun go(f: () -> String): String = f()
fun box(): String {
return X().x()
}