59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
177 B
Kotlin
14 lines
177 B
Kotlin
trait A {
|
|
internal fun foo()
|
|
}
|
|
|
|
trait B {
|
|
protected fun foo() {}
|
|
}
|
|
|
|
class C {
|
|
default <!CANNOT_INFER_VISIBILITY!>object<!> : A, B {
|
|
fun bar() = null
|
|
}
|
|
}
|