Unify naming convention for all 2.0 files
[mono.git] / mcs / errors / cs1661-2.cs
1 // CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
2 // Line: 10
3
4
5 class C
6 {
7         delegate void WithOutParam (out string value);
8
9         static void Main() 
10         {
11                 WithOutParam o = (string l) => { return; };
12     }
13 }