2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0458-2.cs
blob3d96384ff5ba5255b0509159440c40e472395ae8
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
5 public class MainClass
7 public static void Main()
9 object d = (int?)null as int?;