Files
kotlin-fork/idea/testData/copyPaste/imports/ClassMember.kt
T
Pavel V. Talanov 61153c87e0 Insert imports on copy/paste
Introduce KotlinCopyPasteReferenceProcessor
2014-02-04 20:19:52 +04:00

14 lines
178 B
Kotlin

package a
// ALLOW_UNRESOLVED
class A(val c: Int = 1) {
var d = 2
val g: Int
get() = d
fun j() = c
<selection>fun f() = c + d + g + j()</selection>
}