DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / 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(); } }