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

using System.Linq;

class M
{
	public static void Main ()
	{
		int[] a;
		int m = a.FirstOrDefault<int> ();
	}
}