elect
03/01/2019, 1:18 PMThe error message could be clearer to say "only classes without generic parameters are allowed on the left side of ::"
ArrayList<*>::class
changes nothing thoughPavlo Liapota
03/01/2019, 1:25 PMArrayList
is a class and ArrayList<Int>
is a type 🙂elect
03/01/2019, 1:26 PMArrayList::class
thanks Pavloelect
03/01/2019, 1:27 PMArray<VkCommandBuffer>::class
works instead?Pavlo Liapota
03/01/2019, 1:28 PMArray<VkCommandBuffer>
is VkCommandBuffer[]
in Java. So it is not the same generic.