Add 'Add JvmName annotation' quick fix for CONFLICTING_JVM_DECLARATIONS

#KT-17209
This commit is contained in:
Toshiaki Kameyama
2019-09-09 17:46:19 +09:00
committed by Dmitry Gridin
parent 9bc51be287
commit f494b4ce11
11 changed files with 224 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
// "Add '@JvmName' annotation" "true"
// WITH_RUNTIME
class Foo {
fun <caret>bar(foo: List<String>): String {
return "1"
}
fun bar(foo: List<Int>): String {
return "2"
}
fun bar1(foo: List<Int>): String {
return "3"
}
fun bar2(foo: List<Int>): String {
return "4"
}
}