ReadJavaBinaryClassTest: Any

This commit is contained in:
Stepan Koltsov
2012-01-18 11:56:14 +04:00
parent 3407f808f0
commit 5c6823a094
6 changed files with 20 additions and 1 deletions
@@ -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()