Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-241.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0f57182f5b21b7607286ed8f25cb0feeee97e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
abstract public class a
  {
    public abstract void func<T>(ref T arg);
  }
  public class b : a
  {
     public override void func<T>(ref T arg)
     {
     }
  }
class main {
	static void Main () {}
}