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

13 lines
173 B
Kotlin

package a
// ALLOW_UNRESOLVED
//NOTE: is is an unsupported case
class A {
<selection>fun g() {
f()
}</selection>
class object {
fun f()
}
}