2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0458-4.cs
blob37be80ab771b4fe6efed0a7a450250fd9f7f28b3
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 ushort us = 22;
10 int? r = us << null;