2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0831.cs
blob2dbb54786a6d06069758817ed514613c6292cf92
1 // CS0831: An expression tree may not contain a base access
2 // Line: 14
4 using System;
5 using System.Linq.Expressions;
7 class B
9 protected int Core ()
11 return 4;
15 class C : B
17 public void Test ()
19 Expression<Func<int>> e = () => base.Core ();