2 // Do not extend this test
4 // This test copes with the case where a parameter was already captured
5 // and a second anonymous method on the same scope captured a parameter
9 delegate void Del (int n
);
15 static void f (int va
)
20 static Del
[] Make2 (int x
) {
22 delegate (int a
) { f(x += a); }
,
23 delegate (int b
) { f(x += b); }
36 Console
.WriteLine ("OK");