QuickFixMultiModule: change tests structure
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
// "Create member property 'Foo.foo'" "true"
|
||||
|
||||
expect class Foo
|
||||
|
||||
fun test(f: Foo) {
|
||||
takeInt(f.<caret>foo)
|
||||
}
|
||||
|
||||
fun takeInt(n: Int) {
|
||||
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
// "Create member property 'Foo.foo'" "true"
|
||||
|
||||
expect class Foo {
|
||||
val foo: Int
|
||||
}
|
||||
|
||||
fun test(f: Foo) {
|
||||
takeInt(f.foo)
|
||||
}
|
||||
|
||||
fun takeInt(n: Int) {
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
actual class Foo
|
||||
+1
@@ -0,0 +1 @@
|
||||
actual class Foo
|
||||
Reference in New Issue
Block a user