Files
linux-packaging-mono/mcs/errors/cs0165-30.cs

11 lines
141 B
C#
Raw Normal View History

// CS0165: Use of unassigned local variable `a'
// Line: 9
using System;
class Test {
static void Main () {
Action a = () => a();
}
}