Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0019-10.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 }