Files
linux-packaging-mono/mcs/errors/cs0815-7.cs

10 lines
186 B
C#
Raw Normal View History

// CS0815: An implicitly typed local variable declaration cannot be initialized with `(int, method group)'
// Line: 8
class XX
{
public static void Main ()
{
var m = (1, Main);
}
}