blob: 97ab1ba3370dae0cc08a73ef2127538153e847b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Linq.Expressions;
public static class InferArrayType
{
public static void foo (Func<Expression, bool>[] args)
{
}
public static void bar (Action<Expression> seq, Func<Expression, bool> action)
{
foo (new[] { p => { seq (p); return true; }, action });
}
public static void Main ()
{
}
}
|