2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1661.cs
blobd7ed5a505f147d8afc027d5d66840a903340f866
1 // CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
2 // Line: 10
5 class C
7 delegate void WithOutParam (out string value);
9 static void Main()
11 WithOutParam o = (string l) => { return; };