Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0019-25.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `Foo' and `null'
2 // Line: 14
3
4 struct Foo
5 {
6 }
7
8 public class Test
9 {
10         static Foo ctx;
11
12         public static void Main ()
13         {
14                 if (ctx == null)
15                         return;
16         }
17 }