[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0458-13.cs
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
4
5 class C
6 {
7         static void Foo()
8         {
9                 var res = null << 2;
10         }
11 }