Files
kotlin-fork/idea/testData/refactoring/extractFunction/delegation/delegationByExpressionFull.kt
T
Valentin Kipyatkov 4cd7193047 KT-11018 Ctrl + Mouse Hover shows a var as val
#KT-11018 Fixed
2016-02-13 10:20:20 +03:00

7 lines
165 B
Kotlin
Vendored

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