Marc Knaup
10/19/2017, 8:52 PMArray class behaves different from other generic classes? 😮
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