2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0114.cs
blobf73a1566076f524aa21a59557424ab81d2079741
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
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
5 public abstract class X {
6 public abstract void XX ();
9 class Y : X {
10 void XX () {}