Files
kotlin-fork/idea/testData/refactoring/extractFunction/delegation/delegationByExpressionFull.kt
T
2015-05-13 16:13:13 +02:00

7 lines
169 B
Kotlin
Vendored

// PARAM_TYPES: T
// PARAM_DESCRIPTOR: value-parameter val t: T defined in B.<init>
interface T
class A(a: Int, b: Int): T
class B(t: T): T by <selection>t</selection>