Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-489.cs
1 abstract class sample
2 {
3         public abstract TValue Value<TKey, TValue> ();
4
5         class nested<T> : sample
6         {
7                 struct holder<TKey, TValue>
8                 {
9                         public static TValue Val;
10                 }
11
12                 public override sealed TValue Value<TKey, TValue> ()
13                 {
14                         return holder<TKey, TValue>.Val;
15                 }
16         }
17
18         public static void Main ()
19         {
20         }
21 }