2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-25.cs
blob33a06bef28a7885aa8260abdf8846d8268f76ae0
1 // CS0019: Operator `==' cannot be applied to operands of type `Foo' and `null'
2 // Line: 14
4 struct Foo
8 public class Test
10 static Foo ctx;
12 public static void Main ()
14 if (ctx == null)
15 return;