Files
kotlin/idea/testData/refactoring/extractFunction/basic/localClassPropertyRef.kt

8 lines
129 B
Kotlin
Vendored

// SIBLING:
fun foo(a: Int): Int {
class A {
val bar: Int = a + 10
}
return <selection>A().bar</selection>
}