quote only work on lambda on net_4_0
[mcs.git] / errors / cs1512-2.cs
blobf833c99e04ad59bf527d802a0bf7cd878c23e6e6
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 ();