[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[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 }