Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs0100.cs
blob9da2049af7425fed9f257acb2624a1fe4146a13c
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;