Files
kotlin-fork/idea/testData/multiModuleQuickFix/expectFunWithJdk/proj_jvm_dep(fulljdk)/Utils.kt.after
T

7 lines
267 B
Plaintext
Vendored

// "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()