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

class Test
{
	static void Main ()
	{
		int? i;
		int? j;
		int? x = (i = 7) ?? j;
    }
}