Fix for KT-6383: Can't access a private static member of class object

#KT-6383 Fixed
This commit is contained in:
Michael Bogdanov
2014-12-02 14:51:38 +03:00
parent fda7f63957
commit 328dedc415
3 changed files with 33 additions and 5 deletions
@@ -0,0 +1,17 @@
import kotlin.platform.*
class C {
class object {
private platformStatic fun foo(): String {
return "OK"
}
}
fun bar(): String {
return foo()
}
}
fun box(): String {
return C().bar()
}