summaryrefslogtreecommitdiff
path: root/mcs/errors/cs9030.cs
blob: 8824aa2c35ce704c8a59a41f2165e2bd719020ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS9030: The left-hand side of an assignment cannot contain a null propagating operator
// Line: 11

using System;

class MainClass
{
	public static void Main ()
	{
		System.AppDomain a = null;
		a?.AssemblyLoad += (sender, args) => Console.Write (args);
	}
}