Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs9030-2.cs
blobc7d6fccdf23a40971ce4bce629be7942c910aa74
1 // CS9030: The left-hand side of an assignment cannot contain a null propagating operator
2 // Line: 15
4 public class Test1
6 public class Test2
8 public System.EventHandler<System.EventArgs> E;
11 public Test2 test2 = new Test2 ();
13 static void Main ()
15 new Test1 ()?.test2.E += null;