Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0019-57.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `T' and `U'
2 // Line: 12
3
4 interface I
5 {
6 }
7
8 class Program
9 {
10         bool Test<T, U> (T t, U u) where T : I where U : I
11         {
12                 return t == u;
13         }
14 }