Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0502.cs
blob54979376c8839117b2c6ccf632c96ed9802de16c
1 // CS0502: `Main.Test()' cannot be both abstract and sealed
2 // Line: 10
4 abstract class Base {
5 public abstract void Test ();
8 abstract class Main: Base
10 public abstract sealed override void Test () {}