You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importclrfromSystem.Collections.GenericimportList, IList, IEnumerablel=List[str]()
IList[int](l)
# Fails with# -> TypeError: object does not implement IList`1# Should be# -> TypeError: object of type List<String> does not implement IList<Int32>IList[int](IEnumerable[str](l))
# Fails with# -> SystemError: error return without exception set