Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / gtest-542.cs
blob77370007bb20d986c4bb507428b941f8f7c3eb55
1 abstract class A<T>
3 public abstract T getT ();
5 public class B : A<B>
7 public override A<T>.B getT ()
9 return this;
14 class C
16 static int Main ()
18 var r = new A<short>.B ();
19 if (r.getT () != r)
20 return 1;
22 return 0;