2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1688.cs
blob2fb30066bac4039a47b5cf4a9c6f5575e81bdda2
1 // CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters
2 // Line: 10
4 class C
6 delegate void WithOutParam (out string value);
8 static void Main()
10 WithOutParam o = delegate
12 return;