[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0019-35.cs
1 // CS0019:  Operator `==' cannot be applied to operands of type `object' and `int'
2 // Line: 11
3
4 using System;
5
6 class Test {
7
8         static void Main ()
9         {
10                 object o = 2;
11                 if (o == 42)
12                         Console.WriteLine (o);
13         }
14 }