Temporarily added external annotations for ArrayList.clone() method and updated test data. Alternative signature annotations should be parsed for overridden methods, too.

This commit is contained in:
Evgeny Gerashchenko
2012-07-02 23:51:24 +04:00
parent 77df57c150
commit a8aee841c9
2 changed files with 8 additions and 1 deletions
@@ -4,5 +4,5 @@ import java.util.*
fun main(args : Array<String>) {
val al : ArrayList<Int> = ArrayList<Int>()
al.clone() : Object // A type mismatch on this line means that alt-headers were not loaded
al.clone() : Any // A type mismatch on this line means that jdk-annotations were not loaded
}