Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0019-64.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `dynamic' and `void'
2 // Line: 9
3
4 class C
5 {
6         static void Main ()
7         {
8                 dynamic x = null;
9                 var y = x == Main ();
10         }
11 }