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

using System;

class Program
{
	public static void Main (string[] args)
	{
		int a, b;
		string s = "";
		var res = s != null ? a = 1 : b = 2;
		Console.WriteLine (a);
	}
}