Re: [Mono-dev] Nullable types and as operator

2006-09-11 Thread Michael Schurter
Miguel de Icaza wrote: Could you file a bug report for this? Done: http://bugzilla.ximian.com/show_bug.cgi?id=79371 -- Michael Schurter Synthesys Solutions ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] Nullable types and as operator

2006-09-10 Thread Michael Schurter
The following code compiles and executes using MS.NET, but not Mono: // START using System; public class NullableInt { public static void Main() { object x = null; int? y = x as int?; /* Causes CS0077 */