Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1740.cs
1 // CS1738: Named argument `a' specified multiple times
2 // Line: 12
3
4 class C
5 {
6         static void Foo (int a)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Foo (a : 1, a : 2);
13         }
14 }