Files
kotlin-fork/compiler/fir/psi2fir/testData/rawBuilder/declarations/genericFunctions.txt
T

15 lines
400 B
Plaintext
Vendored

FILE: genericFunctions.kt
public? final? interface Any : R|kotlin/Any| {
}
public? final? inline fun <reified T : Any> Any.safeAs(): T? {
^safeAs (this# as? T)
}
public? abstract class Summator : R|kotlin/Any| {
public? constructor(): R|Summator| {
super<R|kotlin/Any|>()
}
public? abstract fun <T> plus(first: T, second: T): T
}