Moved ProviderCollectionTest.cs from System assembly to System.Configuration.
[mono.git] / mcs / errors / cs1512-2.cs
1 // CS1512: Keyword `base' is not available in the current context\r
2 // Line: 11\r
3 \r
4 struct S\r
5 {\r
6         delegate int D ();\r
7         \r
8         void Test ()\r
9         {\r
10                 D d = delegate { \r
11                         return base.GetHashcode ();\r
12                 };\r
13         }\r
14 }\r