Fix incremental compilation for calls to inner classes from supertypes
The problem became actual after 8c2baf0704
This commit is contained in:
committed by
Ilya Muradyan
parent
6b81cc8b77
commit
3ce980fd88
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
abstract class A {
|
||||
inner class Inner(val x: String)
|
||||
}
|
||||
abstract class B : A()
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
// TODO add var
|
||||
package test
|
||||
|
||||
class C : B() {
|
||||
val i = Inner("")
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/test/C.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/b.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
fun main() {
|
||||
C().i.x
|
||||
}
|
||||
Reference in New Issue
Block a user