[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs1746.cs
blobd814ed29f494b9bcdb8493cb24502b1bcd3cf352
1 // CS1746: The delegate `C.IntDelegate' does not contain a parameter named `b'
2 // Line: 18
4 using System;
6 class C
8 delegate int IntDelegate (int a);
10 static int TestInt (int u)
12 return 29;
15 public static void Main ()
17 var del = new IntDelegate (TestInt);
18 del (b : 7);