this one has been passing for quite a while now
[mcs.git] / errors / cs0019-31.cs
blobaf9622e62c989969366ef999d2fae6915ae70b2f
1 // CS0019: Operator `==' cannot be applied to operands of type `S' and `S'
2 // Line: 14
4 struct S
8 class C
10 public static void Main ()
12 S s;
13 S x;
14 bool b = s == x;