boo-lang / boo

The Boo Programming Language.
BSD 3-Clause "New" or "Revised" License
856 stars 144 forks source link

Can't convert array to generic IList #176

Closed masonwheeler closed 5 years ago

masonwheeler commented 6 years ago
    def Test() as IList[of string]:
        return ('a', 'b', 'c')

Expected: This should work Observed: Cannot convert '(string)' to 'System.Collections.Generic.IList[of string]'. (BCE0022)

masonwheeler commented 5 years ago

Fixed.