2 // This test is used to test that we do not use the .override
3 // command on abstract method implementations.
6 public abstract class Abstract
{
7 public abstract int A ();
10 public class Concrete
: Abstract
{
11 public override int A () {
18 public static int Main ()
20 Concrete c
= new Concrete ();