summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-55.cs
blob: 3375850f71942ec56b1268e5da507a3e8db4228f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0165: Use of unassigned local variable `res'
// Line: 11

class X
{
	public static int Main ()
	{
		string[] a = null;
		int res;
		var m = a?[res = 3];
		System.Console.WriteLine (res);
		return 0;
	}
}