X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs1688.cs;h=f9a3db3683cfb725716a5724e9fea329f157e481;hb=8936bf96686a4a5081635868bcb6f9a449b02f73;hp=2fb30066bac4039a47b5cf4a9c6f5575e81bdda2;hpb=d49951ccf584ba637afb1dab7fff714478e3174d;p=mono.git diff --git a/mcs/errors/cs1688.cs b/mcs/errors/cs1688.cs index 2fb30066bac..f9a3db3683c 100644 --- a/mcs/errors/cs1688.cs +++ b/mcs/errors/cs1688.cs @@ -1,15 +1,15 @@ -// CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters -// Line: 10 - -class C -{ - delegate void WithOutParam (out string value); - - static void Main() - { - WithOutParam o = delegate - { - return; - }; - } +// CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters +// Line: 10 + +class C +{ + delegate void WithOutParam (out string value); + + static void Main() + { + WithOutParam o = delegate + { + return; + }; + } } \ No newline at end of file