Files
kotlin-fork/idea/testData/copyPaste/imports/ClassMember.kt
T
2015-04-09 19:09:08 +03:00

12 lines
157 B
Kotlin
Vendored

package a
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>
}