Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0019-31.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `S' and `S'
2 // Line: 14
3
4 struct S
5 {
6 }
7
8 class C
9 {
10         public static void Main ()
11         {
12                 S s;
13                 S x;
14                 bool b = s == x;
15         }
16 }