2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1512-2.cs
blob734984c9e1abc6d2302ecd5fc6ac4c8727a35935
1 // CS1512: Keyword `base' is not available in the current context
2 // Line: 11
4 struct S
6 delegate int D ();
8 void Test ()
10 D d = delegate {
11 return base.GetHashcode ();