2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-10.cs
blob844bf0e8eb24fc852d7878b85aaba485465af81e
1 // CS0019: Operator `==' cannot be applied to operands of type `object' and `V'
2 // Line: 9
4 public class C<V>
6 public bool TryGet (V v)
8 object tmp = null;
9 return tmp == v;