ReadJavaBinaryClassTest: Any
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun any(): Any = 1
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
fun anyq(): Any? = 1
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
import java.util.List
|
||||
|
||||
fun listOfAny(): List<Any> = throw Exception()
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
import java.util.List
|
||||
|
||||
fun listOfAnyQ(): List<Any?> = throw Exception()
|
||||
Reference in New Issue
Block a user