Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0458-2.cs
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
4
5 public class MainClass
6 {
7         public static void Main()
8         {
9                 object d = (int?)null as int?;
10         }
11 }
12