0cc861f00b
Effective visibility mechanism introduced. Local is considered as public, java protected as Kotlin protected, java package private as Kotlin private.
7 lines
113 B
Kotlin
Vendored
7 lines
113 B
Kotlin
Vendored
interface My
|
|
|
|
internal class Your: My
|
|
|
|
// Code is valid, despite of delegate is internal
|
|
class His: My by Your()
|