Files
kotlin-fork/compiler/util-klib-abi/testData/content/root_package.kt
T
2023-07-31 20:22:20 +00:00

18 lines
374 B
Kotlin
Vendored

// MODULE: root_package_library
// About this test:
// It checks how declarations from the root package are rendered.
interface Interface {
interface NestedInterface
}
public class Class(val property: String): Interface, Interface.NestedInterface {
fun function(): String = ""
class NestedClass
}
fun function(): String = ""
val property: String get() = ""