Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / test-named-10.cs
1 using System;
2
3 internal class Program
4 {
5         public static void Main ()
6         {
7                 Method (1, 2, paramNamed: 3);
8         }
9         
10         static void Method (int p1, int paramNamed, int p2)
11         {
12                 throw new ApplicationException ();
13         }
14         
15         static void Method (int p1, int p2, object paramNamed)
16         {
17         }
18 }