DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs0165-30.cs
1234567891011
// CS0165: Use of unassigned local variable `a' // Line: 9 using System; class Test { static void Main () { Action a = () => a(); } }