2a46da906c
Add -X flag to report extra compiler diagnostics which migth break compatibility. Use the flag to unconditionally check constructors without fear of prematurely evaluating lazy supertypes. KT-19234 KT-42404 KT-44583
11 lines
171 B
Kotlin
Vendored
11 lines
171 B
Kotlin
Vendored
package test
|
|
|
|
class SubKt : Super() {
|
|
companion object {
|
|
fun companionMethod() = "OK"
|
|
}
|
|
|
|
object InnerObject {
|
|
fun objectMethod() = "OK"
|
|
}
|
|
} |