Add a set of new tests for KT-27075 (create expected class) + some fixes
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
expect fun <T> createList(): java.util.ArrayList<T>
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Create expected function in common module proj_Common" "true"
|
||||
// DISABLE-ERRORS
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
actual fun <T> <caret>createList(): ArrayList<T> = ArrayList()
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Create expected function in common module proj_Common" "true"
|
||||
// DISABLE-ERRORS
|
||||
|
||||
import java.util.ArrayList
|
||||
|
||||
actual fun <T> createList(): ArrayList<T> = ArrayList()
|
||||
Reference in New Issue
Block a user