[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0019-57.cs
blobee648e6cef150eb2e90d8f62cfcbccdb14df0141
1 // CS0019: Operator `==' cannot be applied to operands of type `T' and `U'
2 // Line: 12
4 interface I
8 class Program
10 bool Test<T, U> (T t, U u) where T : I where U : I
12 return t == u;