blob: 01388bee37feeec0f6cfbb35cd12243469d31040 [file]
// RUN_PIPELINE_TILL: BACKEND
interface Any
inline fun <reified T : Any> Any.safeAs(): T? = this as? T
abstract class Summator {
abstract fun <T> plus(first: T, second: T): T
}
/* GENERATED_FIR_TAGS: classDeclaration, funWithExtensionReceiver, functionDeclaration, inline, interfaceDeclaration,
nullableType, reified, thisExpression, typeConstraint, typeParameter */