cleol
[mcs.git] / errors / cs0019-35.cs
bloba7ba6b057207257ae5799031d9074c2d3523baf0
1 // CS0019: Operator `==' cannot be applied to operands of type `object' and `int'
2 // Line: 11
4 using System;
6 class Test {
8 static void Main ()
10 object o = 2;
11 if (o == 42)
12 Console.WriteLine (o);