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

16 lines
177 B
Kotlin
Vendored

package a
fun Int.f() {}
val Int.p: Int
get() = 2
var Int.g: Int
get() = 1
set(i : Int) = Unit
<selection>fun foo() {
3.f()
2.p
3.g = 5
}</selection>