[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0108-18.cs
blob51401f6d0d7fd4a6a19b9a976d49fc0c1f184bc2
1 // CS0108: `IB.Foo(int)' hides inherited member `IA.Foo'. Use the new keyword if hiding was intended
2 // Line: 13
3 // Compiler options: -warnaserror
5 interface IA
7 bool Foo { get; }
10 interface IB : IA
12 new void Foo ();
13 void Foo (int a);