2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-2.cs
blobe36bed4fb0acbcc7c0edab6842395504c62231ac
1 // CS0019: Operator `==' cannot be applied to operands of type `T' and `T'
2 // Line: 5
3 public class TestClass<T>
5 public bool Check (T x, T y) { return x == y; }
8 public class X
10 static void Main ()
11 { }