1 // cs0114.cs: `Y.XX()' hides inherited member `X.XX()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword
3 // Compiler options: -warnaserror -warn:2
5 public abstract class X
{
6 public abstract void XX ();