2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0458-3.cs
blobee41ef3017b302c3f4f5ee7ac64260df0e7deb90
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
5 class C
7 static void Main ()
9 int? i = 2;
10 i *= null;