2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-355.cs
blobadf87bb71bec2e2fab64eb287101b9c4b2a81e27
1 class A
3 public virtual bool Foo (string s)
5 return true;
8 public virtual string Foo<T> (string s)
10 return "v";
14 class B : A
16 public bool Goo (string s)
18 return Foo (s);
21 public override bool Foo (string s)
23 return false;
26 public override string Foo<T> (string s)
28 return "a";
33 class C
35 public static void Main ()