Details
-
Type:
Bug
-
Status:
Reopened
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 0.9.1, 0.9.2
-
Fix Version/s: 0.9.5
-
Component/s: Type System
-
Labels:None
-
Environment:debian linux, trunk build 3333
-
Testcase included:yes
-
Number of attachments :
Description
The C# code for what I am attempting is:
using System.Collections.Generic; interface ListInterface : IList<int> {}; class Impl : List<int>,ListInterface {};
In Boo, my attempt gives numerous errors:
import System.Collections.Generic interface ListInterface (IList of int): pass class Impl (List of int,ListInterface): pass
Duplicate of BOO-851