eol
[mcs.git] / tests / gtest-475.cs
blobf9e6926f13c7aa97d3b04a886ca39dc9db68d705
1 using System;
3 class Value<T>
5 public static Value<T> Default = null;
8 class Test<T, U>
10 public Value<T> Value {
11 get { return null; }
14 public class B
16 public B (Value<U> arg)
20 public static B Default = new B (Value<U>.Default);
24 class C
26 public static void Main ()
28 var v = Test<int, string>.B.Default;