[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0019-50.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;