How come `Array` class behaves different from othe...
# announcements
m
How come
Array
class behaves different from other generic classes? 😮
Copy code
Iterable::class.java // works
Iterable<Any?>::class.java // "Only classes are allowed on the left hand side of a class literal"

Array::class.java // Array class literal requires a type argument, please specify one in angle brackets
Array<Any?>::class.java // works