QuickFixMultiModule: change tests structure

This commit is contained in:
Dmitry Gridin
2019-08-19 21:15:18 +07:00
parent 02fd137cec
commit 18f0bbe8f1
608 changed files with 786 additions and 747 deletions
@@ -0,0 +1 @@
expect fun <T> createList(): java.util.ArrayList<T>
@@ -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()
@@ -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()