w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0458-11.cs
blob26f8e0c890b60e4125e3d996af05f84d606b8b8d
1 // CS0458: The result of the expression is always `null' of type `ulong?'
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
5 class C
7 static void Foo()
9 ulong a = 100;
10 var res = a << null;