Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1744-3.cs
1 // CS1744: Named argument `p1' cannot be used for a parameter which has positional argument specified
2 // Line: 8
3
4 internal class Program
5 {
6         public static void Main ()
7         {
8                 Method (1, 2, p1: 3);
9         }
10         
11         static void Method (int p1, int paramNamed, int p2)
12         {
13         }
14         
15         static void Method (int p1, int p2, object paramNamed)
16         {
17         }
18 }