New test.
authorMarek Safar <marek.safar@gmail.com>
Thu, 29 Apr 2010 08:53:29 +0000 (08:53 -0000)
committerMarek Safar <marek.safar@gmail.com>
Thu, 29 Apr 2010 08:53:29 +0000 (08:53 -0000)
svn path=/trunk/mcs/; revision=156403

mcs/tests/gtest-etree-23.cs [new file with mode: 0644]

diff --git a/mcs/tests/gtest-etree-23.cs b/mcs/tests/gtest-etree-23.cs
new file mode 100644 (file)
index 0000000..30b6295
--- /dev/null
@@ -0,0 +1,26 @@
+using System;
+using System.Linq.Expressions;
+
+namespace Test
+{
+       public class OrderBySpecification
+       {
+               public OrderBySpecification (Expression<Func<object, object>> predicate)
+               {
+               }
+       }
+
+       public class RateOrderById : OrderBySpecification
+       {
+               public RateOrderById ()
+                       : base (x => x)
+               {
+               }
+
+               public static int Main ()
+               {
+                       new RateOrderById ();
+                       return 0;
+               }
+       }
+}