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
|