Files
kotlin-fork/native/native.tests/testData/klib/dump-metadata/builtinsSerializer/simple.kt
T
Dmitriy Dolovov cb92990ed6 [KLIB][tests] Reorganize "klib dump-metadata" tests
- Keep the test data under "native/native.tests/testData/klib/" dir
- Rename tests from "klib contents" to "klib dump-metadata"
2023-08-16 19:11:35 +00:00

12 lines
184 B
Kotlin
Vendored

package test
class Class {
fun member() = null
}
fun function(int: Int, string: String = "default"): Class = Class()
fun <T> T.extension(): T? = null
val property: Unit = Unit