summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-42.cs
blob: 81de0cf86853033f310d2481f9f09cff243fc33e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0165: Use of unassigned local variable `a'
// Line: 14

using System;

class Program
{
	public static void Main ()
	{
		object a;
		string s = null;

		var res = s ?? (a = null);
		Console.WriteLine (a);
	}
}