decompiled text: add test for inherited interface
This commit is contained in:
committed by
Alexander Udalov
parent
add43407d3
commit
be2324031d
@@ -0,0 +1,10 @@
|
||||
// IntelliJ API Decompiler stub source generated from a class file
|
||||
// Implementation of methods is not available
|
||||
|
||||
package test
|
||||
|
||||
internal interface Inherited : dependency.Base {
|
||||
public companion object {
|
||||
internal final val INT_CONST: kotlin.Int /* compiled code */
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package dependency
|
||||
|
||||
interface Base
|
||||
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
import dependency.*
|
||||
|
||||
interface Inherited : Base {
|
||||
companion object {
|
||||
val INT_CONST = 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user