summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-19.cs
blob: 3a9e7ef04a72314e1ef04401c6a5f031a27d3038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0165: Use of unassigned local variable `s'
// Line: 10
// Compiler options: -r:CS0165-19-lib.dll

class Program
{
	static void Main ()
	{
		S s;
		s.Test ();
	}
}