2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-etree-11.cs
blob328f3c1d58e5891d90eb65adda73af4a9c238ed0
1 using System;
2 using System.Linq.Expressions;
4 class C
6 static void Main ()
8 new Test ().Invalid (4);
12 public class Test
14 public void Invalid (int item)
16 Expression<Action> e1 = () => Other (new int [] { item });
17 e1.Compile () ();
20 public void Other (int [] i)