Add 'Add JvmName annotation' quick fix for CONFLICTING_JVM_DECLARATIONS
#KT-17209
This commit is contained in:
committed by
Dmitry Gridin
parent
9bc51be287
commit
f494b4ce11
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user