Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-etree-23.cs
1 using System;
2 using System.Linq.Expressions;
3
4 namespace Test
5 {
6         public class OrderBySpecification
7         {
8                 public OrderBySpecification (Expression<Func<object, object>> predicate)
9                 {
10                 }
11         }
12
13         public class RateOrderById : OrderBySpecification
14         {
15                 public RateOrderById ()
16                         : base (x => x)
17                 {
18                 }
19
20                 public static int Main ()
21                 {
22                         new RateOrderById ();
23                         return 0;
24                 }
25         }
26 }