J2K: correct conversion of nested class references

#KT-5294 Fixed
 #KT-5400 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-07-11 20:39:49 +04:00
parent bcc36c4e48
commit 930022aaac
26 changed files with 404 additions and 148 deletions
@@ -0,0 +1,17 @@
package pack
import pack.A.*
class A(nested: Nested = Nested(Nested.FIELD)) {
class Nested(p: Int) {
class object {
public val FIELD: Int = 0
}
}
}
class B {
var nested: Nested
}