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