[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs1525-14.cs
1 // CS1525: Unexpected symbol `=', expecting `.' or `['
2 // Line: 8
3
4 class DerivedClass
5 {
6         public DerivedClass ()
7         {
8                 base = null;
9         }
10 }
11