Thanks for the report. Regarding documentation, there's a doc file (csharp.html) missing in the tarball. I'll add this to the tarball on the download site, and post a message here when it's ready. If anyone has already downloaded the release and would like a copy of this file, please mail me directly.
Dave. -----Original Message----- From: Jeroen Frijters [mailto:[EMAIL PROTECTED]] Sent: 05 September 2002 09:55 To: [EMAIL PROTECTED] Subject: [DOTNET-ROTOR] Small Gyro bug When I was trying to figure out the constraint syntax (is there any documentation that I missed?), I ran into the following: class test { public static T Func<System.IConvertible : T>(T v) { return v; } } When you try to compile this, the compiler exits without any error messages. BTW, for those who are interested, the correct syntax is: class test { public static T Func<T>(T v) where T : System.IConvertible { return v; } } Regards, Jeroen