Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git] / mcs / errors / cs9030.cs
blob8824aa2c35ce704c8a59a41f2165e2bd719020ef
1 // CS9030: The left-hand side of an assignment cannot contain a null propagating operator
2 // Line: 11
4 using System;
6 class MainClass
8 public static void Main ()
10 System.AppDomain a = null;
11 a?.AssemblyLoad += (sender, args) => Console.Write (args);