KT-11955 Copy/Paste inserts FQ-name

#KT-11955 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-04-19 16:50:23 +03:00
parent 364a8801a3
commit 1535e8ad90
11 changed files with 58 additions and 6 deletions
@@ -0,0 +1,6 @@
package a.b.c
class Foo(p: Int)
fun Foo(s: String){}
fun Foo(c: Char){}
+3
View File
@@ -0,0 +1,3 @@
fun foo() {
<selection>a.b.c.Foo(1.0)</selection>
}
+5
View File
@@ -0,0 +1,5 @@
import a.b.c.Foo
fun foo() {
Foo(1.0)
}