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

using System;

class Test {
	
	static void Main () {
		Action a = () => a();
	}
}