3748507ac1
+JDK was not very helpful
18 lines
370 B
Plaintext
18 lines
370 B
Plaintext
// JET-72 Type inference doesn't work when iterating over ArrayList
|
|
|
|
import java.util.ArrayList
|
|
|
|
abstract class Item(val room: Object) {
|
|
abstract val name : String
|
|
}
|
|
|
|
val items: ArrayList<Item> = ArrayList<Item>
|
|
|
|
fun test(room : Object) {
|
|
for(val item: Item? in items) {
|
|
if (item?.room === room) {
|
|
System.out?.println("You see " + item?.name)
|
|
}
|
|
}
|
|
}
|