(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1676.cs
blobba2895d46ef216a8e8b8f8a34862ab752505bc2f
1 // CS1676: Signature mismatch in parameter modifier for parameter #1
2 // Line: 11
3 //
4 // The delegate has an explicit signature, so it can not be assigned.
5 //
6 delegate void D (ref int x);
8 class X {
9 static void Main ()
11 D d2 = delegate (int x) {};