Files
kotlin-fork/compiler/testData/diagnostics/tests/alt-headers/ArrayListClone.jet
T
2012-03-12 22:54:24 +04:00

10 lines
213 B
Plaintext

package kotlin1
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
}