[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0472-5.cs
1 // CS0472: The result of comparing value type `byte' with null is always `false'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
4
5 class C
6 {
7         public static bool Test (byte value)
8         {
9                 if (value == null)
10                         return false;
11
12                 return true;
13         }
14 }