QuickFixMultiModule: change tests structure
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
expect fun <T> createList(): java.util.ArrayList<T>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// "Create expected function in common module proj_Common" "true"
|
||||
// SHOULD_FAIL_WITH: You cannot create the expect declaration from:,fun createList() = ArrayList()
|
||||
// DISABLE-ERRORS
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
actual fun <T> <caret>createList(): ArrayList<T> = ArrayList()
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
// "Create expected function in common module proj_Common" "true"
|
||||
// SHOULD_FAIL_WITH: You cannot create the expect declaration from:,fun createList() = ArrayList()
|
||||
// DISABLE-ERRORS
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
actual fun <T> createList(): ArrayList<T> = ArrayList()
|
||||
Reference in New Issue
Block a user