QuickFixMultiModule: change tests structure
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
// "Convert parameter to receiver" "true"
|
||||
|
||||
expect class Foo {
|
||||
fun foo(n: Int, <caret>s: String)
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
foo(1, "2")
|
||||
}
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
// "Convert parameter to receiver" "true"
|
||||
|
||||
expect class Foo {
|
||||
fun String.foo(n: Int)
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
"2".foo(1)
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
actual class Foo {
|
||||
actual fun foo(n: Int, s: String) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
foo(1, "2")
|
||||
}
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
actual class Foo {
|
||||
actual fun String.foo(n: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
"2".foo(1)
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
actual class Foo {
|
||||
actual fun foo(n: Int, s: String) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
foo(1, "2")
|
||||
}
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
actual class Foo {
|
||||
actual fun String.foo(n: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
"2".foo(1)
|
||||
}
|
||||
Reference in New Issue
Block a user