[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1661-2.cs
bloba7035ef01951051449f0857d98e2c53cdaafc262
1 // CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
2 // Line: 10
4 class C
6 delegate void WithOutParam (out string value);
8 static void Main()
10 WithOutParam o = (string l) => { return; };