Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-218.cs
1 class T
2 {
3         public static void Main()
4         {}
5         delegate void foo (object o);
6
7         static foo[] f = { new foo(T.compareQueryQuery1) };
8         
9         static void compareQueryQuery1(object o) {}
10 };
11
12