Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-521.cs
1 using System;
2
3 public class Tests {
4
5         public delegate void CallTargetWithContextN (object o, params object[] args);
6
7         public static void CallWithContextN (object o, object[] args) {
8         }
9
10         public static void Main () {
11                 object o = new CallTargetWithContextN (CallWithContextN);
12         }
13 }