[runtime] Fix "make distcheck"
[mono-project.git] / mono / tests / marshalbyref1.cs
blob445c3ca4804010e3a023a19f21fd8148077bbb16
1 class Base : System.MarshalByRefObject {
2 public virtual void method () {
6 class Derived : Base {
7 public override void method () {
8 base.method ();
10 static void Main() {
11 Derived d = new Derived ();
12 d.method ();