4b284a4890
At the moment, it's not published anywhere, but that may change soon #KT-23198
17 lines
219 B
Kotlin
Vendored
17 lines
219 B
Kotlin
Vendored
interface A {
|
|
interface B {
|
|
interface C
|
|
}
|
|
|
|
companion object D {
|
|
enum class E {
|
|
E1,
|
|
E2,
|
|
}
|
|
|
|
sealed class F {
|
|
class G : F()
|
|
}
|
|
}
|
|
}
|