[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-named-03.cs
blob82307b5d8b763d5e044d8e63082d346d10b0c46f
1 using System;
3 class C
5 delegate int IntDelegate (int a);
7 static int TestInt (int u)
9 return 29;
12 public static int Main ()
14 var del = new IntDelegate (TestInt);
15 del (a : 7);
17 return 0;