bmx-ng / bcc

A next-generation bcc parser for BlitzMax
zlib License
33 stars 13 forks source link

[Generics] Using object as argument #645

Open thareh opened 7 months ago

thareh commented 7 months ago

Good day,

Seems using Object as an argument for a generic type can cause compilation issues.

Framework BRL.Blitz
Import BRL.Collections

Local list:TLinkedList<Object> = New TLinkedList<Object>()
list.AddLast("test")

Thanks!