(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1501-5.cs
blobf84ef83627cbc46c7ef981d26d1505965bef5cba
1 // cs1501.cs : No overload for method `MyDelegate' takes `0' arguments
2 // Line : 17
4 public class Blah {
6 public delegate int MyDelegate (int i, int j);
8 public int Foo (int i, int j)
10 return i+j;
13 public static void Main ()
15 Blah i = new Blah ();
17 MyDelegate del = new MyDelegate ();