Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / marshalbyref1.cs
1 class Base : System.MarshalByRefObject {
2         public virtual void method () {
3         }
4 }
5
6 class Derived : Base {
7         public override void method () {
8                 base.method ();
9         }
10         static void Main() {
11                 Derived d = new Derived ();
12                 d.method ();
13         }
14 }