Files
kotlin-fork/compiler/fir/psi2fir/testData/rawBuilder/declarations/genericFunctions.txt
T
2019-03-22 16:25:14 +03:00

13 lines
329 B
Plaintext
Vendored

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