QuickFixMultiModule: change tests structure
This commit is contained in:
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
expect class Foo {
|
||||
fun foo(n: Int, s: String)
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
foo(1, "2")
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
expect class Foo {
|
||||
fun String.foo(n: Int)
|
||||
}
|
||||
|
||||
fun Foo.test() {
|
||||
"2".foo(1)
|
||||
}
|
||||
Reference in New Issue
Block a user