dlr bug
[mcs.git] / tests / test-225.cs
blob485f940da5fd17d7a54f8f754a68e38d95f3f612
1 using System;
3 class A {
4 public int foo = 1;
7 class B : A {
8 public new int foo ()
10 return 1;
13 static void Main ()
15 B b = new B ();
16 Console.WriteLine (b.foo ());