QuickFixMultiModule: change tests structure
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
expect interface ExpInterface {
|
||||
fun first()
|
||||
}
|
||||
|
||||
expect class ExpImpl : ExpInterface { }
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
expect interface ExpInterface {
|
||||
fun first()
|
||||
}
|
||||
|
||||
expect class ExpImpl : ExpInterface { }
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Remove 'actual' modifier" "true"
|
||||
|
||||
actual interface ExpInterface {
|
||||
actual fun first()
|
||||
}
|
||||
|
||||
actual class ExpImpl : ExpInterface {
|
||||
actual override fun <caret>first() { }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Remove 'actual' modifier" "true"
|
||||
|
||||
actual interface ExpInterface {
|
||||
actual fun first()
|
||||
}
|
||||
|
||||
actual class ExpImpl : ExpInterface {
|
||||
override fun first() { }
|
||||
}
|
||||
Reference in New Issue
Block a user