cb92990ed6
- Keep the test data under "native/native.tests/testData/klib/" dir - Rename tests from "klib contents" to "klib dump-metadata"
12 lines
184 B
Kotlin
Vendored
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
|