dlr bug
[mcs.git] / tests / gtest-471.cs
blob31374b26d0d6acba5d54541e576995e2dbe401c1
1 class Q
3 static void bar<T> (out T t) where T : struct
5 t = true ? new T () : new T ();
8 public static int Main ()
10 int d = 0;
11 bar (out d);
12 return 0;