fix run-test
[mcs.git] / errors / gcs1676.cs
blobce31be0e10c09f6f4b7893cb96e49b5b17aaa390
1 // CS1676: Parameter `1' must be declared with the `out' keyword
2 // Line: 10
4 class C
6 delegate int D (out int i);
8 public static void Main ()
10 D d = a => 1;