Files
kotlin-fork/idea/testData/refactoring/introduceVariable/DelegatorByExpressionInDelegate.kt
T
2015-09-03 22:06:15 +03:00

7 lines
94 B
Kotlin
Vendored

interface T
object O : T
fun foo() {
val x = object : T by <selection>O</selection> {}
}