[tuner] handle the case with multiple "preserve" attributes
[mono-project.git] / mcs / tests / test-225.cs
blob34fec7933f57bf3718459b5cf92dcafff24f57e0
1 using System;
3 class A {
4 public int foo = 1;
7 class B : A {
8 public new int foo ()
10 return 1;
13 public static void Main ()
15 B b = new B ();
16 Console.WriteLine (b.foo ());