use MOONLIGHT symbol
[mcs.git] / errors / gcs0100.cs
blob5a7f1d168d4a70eb054ef707e580ccb87c2141c7
1 // CS0100: The parameter name `a' is a duplicate
2 // Line: 10
4 using System;
6 class C
8 static void Main ()
10 Func<int, int, int> l = (a, a) => 1;