[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0165-30.cs
blobc800affb13047f73bc151046d096d69fd0f62964
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
4 using System;
6 class Test {
8 static void Main () {
9 Action a = () => a();