Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-etree-17.cs
1 using System;
2 using System.Linq.Expressions;
3
4 namespace CompilerCrashTest
5 {
6         public static class QueryCompiler
7         {
8                 public static D Compile<D> (Expression<D> query)
9                 {
10                         return (D) (object) Compile ((LambdaExpression) query);
11                 }
12
13                 public static Delegate Compile (LambdaExpression query)
14                 {
15                         throw new NotImplementedException ();
16                 }
17
18                 public static void Main ()
19                 {
20                 }
21         }
22 }