07767f88e2
^KT-62340
13 lines
201 B
Kotlin
Vendored
13 lines
201 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
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
|