Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git] / mcs / errors / cs0019-64.cs
blob788b453f5cc2bb2e17b92160ec9cdc7d91f2b6c5
1 // CS0019: Operator `==' cannot be applied to operands of type `dynamic' and `void'
2 // Line: 9
4 class C
6 static void Main ()
8 dynamic x = null;
9 var y = x == Main ();