Merge pull request #757 from mlintner/master
[mono.git] / mcs / errors / cs0472-6.cs
1 // CS0472: The result of comparing value type `int' with null is always `false'
2 // Line: 12
3 // Compiler options: -warnaserror
4
5 using System;
6
7 class X
8 {
9         public static void Main ()
10         {
11                 int i = 0;
12                 var x = i == default (byte?);
13         }
14 }