mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
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
|