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