Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0019-65.cs
blobf1e8a50d00257dda3807fcbdb6a47d97539f3680
1 // CS0019: Operator `==' cannot be applied to operands of type `dynamic' and `anonymous method'
2 // Line: 9
4 class C
6 static void Main ()
8 dynamic x = null;
9 var y = x == (() => 1);