Properly handle @NotNull for arrays

This commit is contained in:
Andrey Breslav
2013-10-30 15:57:30 +04:00
parent 3f3030ff26
commit 31d4993406
8 changed files with 50 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
package test
public open class NotNullObjectArray() : java.lang.Object() {
public open fun hi(): Array<Any> = throw Exception()
}