[System.Core] SLE from CoreFX including interpreter
[mono.git] / mcs / tests / test-named-03.cs
1 using System;
2
3 class C
4 {
5         delegate int IntDelegate (int a);
6         
7         static int TestInt (int u)
8         {
9                 return 29;
10         }
11         
12         public static int Main ()
13         {
14                 var del = new IntDelegate (TestInt);
15                 del (a : 7);
16                 
17                 return 0;
18         }
19 }