Minor: adjust quick fix test data to avoid "conflicting overloads"

This commit is contained in:
Pavel V. Talanov
2018-04-20 13:38:29 +02:00
parent 3949fc70c9
commit 94dfcba5c5
16 changed files with 16 additions and 16 deletions
@@ -6,6 +6,6 @@ actual class Foo {
}
}
fun Foo.test() {
fun Foo.test1() {
"1".foo(2)
}
@@ -6,6 +6,6 @@ actual class Foo {
}
}
fun Foo.test() {
fun Foo.test1() {
foo("1", 2)
}
@@ -4,6 +4,6 @@ actual class Foo {
}
}
fun Foo.test() {
fun Foo.test1() {
"1".foo(2)
}
@@ -4,6 +4,6 @@ actual class Foo {
}
}
fun Foo.test() {
fun Foo.test1() {
foo("1", 2)
}