Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / dtest-named-01.cs
1 public class Test
2 {
3         public void Foo (out int arg)
4         {
5                 arg = 5;
6         }
7
8         public static int Main ()
9         {
10                 dynamic d = new Test ();
11                 int x;
12                 d.Foo (arg: out x);
13                 if (x != 5)
14                         return 1;
15
16                 return 0;
17         }
18 }