(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0239.cs
blob0f3608643bca2ec75f7d1c787e397b685fb02f30
1 // cs0239.cs : `X.MyMethod' : cannot override inherited member `Bar.MyMethod' because it is sealed.
2 // Line : 25
4 using System;
6 public class Foo {
8 public virtual void MyMethod ()
10 Console.WriteLine ("This is me !");
14 public class Bar : Foo {
16 public sealed override void MyMethod ()
23 public class X : Bar {
25 public override void MyMethod ()
30 public static void Main ()