Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-225.cs
1 using System;
2
3 class A {
4         public int foo = 1;
5 }
6
7 class B : A {
8         public new int foo ()
9         {
10                 return 1;
11         }
12         
13         public static void Main ()
14         {
15                 B b = new B ();
16                 Console.WriteLine (b.foo ());
17         }
18 }