2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-etree-17.cs
blobc63797540d20400c658e7b6012532c3e3734aa60
1 using System;
2 using System.Linq.Expressions;
4 namespace CompilerCrashTest
6 public static class QueryCompiler
8 public static D Compile<D> (Expression<D> query)
10 return (D) (object) Compile ((LambdaExpression) query);
13 public static Delegate Compile (LambdaExpression query)
15 throw new NotImplementedException ();
18 public static void Main ()