2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / tests / test-named-03.cs
1 // Compiler options: -langversion:future
2
3 using System;
4
5 class C
6 {
7         delegate int IntDelegate (int a);
8         
9         static int TestInt (int u)
10         {
11                 return 29;
12         }
13         
14         public static int Main ()
15         {
16                 var del = new IntDelegate (TestInt);
17                 del (a : 7);
18                 
19                 return 0;
20         }
21 }