Support private package properties in inline functions

This commit is contained in:
Michael Bogdanov
2015-05-27 15:48:39 +03:00
parent be9cc2e91b
commit e20a5121c7
7 changed files with 70 additions and 13 deletions
@@ -0,0 +1,10 @@
import test.*
fun box() : String {
val p = P()
if (p.testPrivate() != "OK") return "fail 1 ${p.testPrivate()}"
if (p.testFinal() != "OK") return "fail 2 ${p.testFinal()}"
return "OK"
}