eol
[mcs.git] / tests / test-named-03.cs
blob441b76b487d2afc7269836729a04e97057e949c5
1 // Compiler options: -langversion:future
3 using System;
5 class C
7 delegate int IntDelegate (int a);
9 static int TestInt (int u)
11 return 29;
14 public static int Main ()
16 var del = new IntDelegate (TestInt);
17 del (a : 7);
19 return 0;