[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0108.cs
blob18201bd0c49e0caf161c7448d9cc452e013148bf
1 // CS0108: `Derived.F()' hides inherited member `Base.F()'. Use the new keyword if hiding was intended
2 // Line:
3 // Compiler options: -warnaserror -warn:2
5 class Base {
6 public void F () {}
9 class Derived : Base {
10 void F () {}