[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0019-42.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `T' and `T'
2 // Line: 5
3 public class TestClass<T>
4 {
5         public bool Check (T x, T y) { return x == y; }
6 }
7
8 public class X
9 {
10         static void Main ()
11         { }
12 }
13
14