Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / gtest-implicitarray-03.cs
1 using System;
2 using System.Linq.Expressions;
3
4 public static class InferArrayType
5 {
6         public static void foo (Func<Expression, bool>[] args)
7         {
8         }
9
10         public static void bar (Action<Expression> seq, Func<Expression, bool> action)
11         {
12                 foo (new[] { p => { seq (p); return true; }, action });
13         }
14
15         public static void Main ()
16         {
17         }
18 }