Files
kotlin-fork/idea/testData/refactoring/extractFunction/delegation/delegationByExpressionFull.kt.after
T

11 lines
186 B
Plaintext

// PARAM_TYPES: T
// PARAM_DESCRIPTOR: value-parameter val t: T defined in B.<init>
trait T
class A(a: Int, b: Int): T
class B(t: T): T by t(t)
private fun t(t: T): T {
return t
}