http://bugzilla.novell.com/show_bug.cgi?id=599469

http://bugzilla.novell.com/show_bug.cgi?id=599469#c2


--- Comment #2 from Ole Hyldahl Tolshave <[email protected]> 2010-04-24 15:42:17 
UTC ---
This is a somewhat simpler case, that also crashes. Commenting out the
"where"-constraint makes it work.
//--------------------------------------------------------------
public class Grid<CT>
        where CT : Grid<CT>.GPD.GC              // Comment out this "where" to
make it not crash.
{
        public class GPD
        {
                public class GC
                {
                }
        }
}

public class H : Grid<MyCT>.GPD
{
}

public class MyCT : Grid<MyCT>.GPD.GC
{
}

public class TheTest
{
        public static void Main (string[] args)
        {
                new H();
        }
}

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to