[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-355.cs
1 class A
2 {
3         public virtual bool Foo (string s)
4         {
5                 return true;
6         }
7
8         public virtual string Foo<T> (string s)
9         {
10                 return "v";
11         }
12 }
13
14 class B : A
15 {
16         public bool Goo (string s)
17         {
18                 return Foo (s);
19         }
20
21         public override bool Foo (string s)
22         {
23                 return false;
24         }
25
26         public override string Foo<T> (string s)
27         {
28                 return "a";
29         }
30 }
31
32
33 class C
34 {
35         public static void Main ()
36         {
37         }
38 }