[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0238.cs
blob88ab78374bcab3498c29891f16544002507ef43b
1 // CS0238: `DerivedClass.Show()' cannot be sealed because it is not an override
2 // Line: 10
4 class BaseClass {
5 void Show() {}
8 class DerivedClass: BaseClass {
9 sealed void Show() {}
11 static void Main() {}