[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0019-50.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `object' and `V'
2 // Line: 9
3
4 public class C<V>
5 {
6         public bool TryGet (V v)
7         {
8                 object tmp = null;
9                 return tmp == v;
10         }
11 }