[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-471.cs
1 class Q
2 {
3         static void bar<T> (out T t) where T : struct
4         {
5                 t = true ? new T () : new T ();
6         }
7
8         public static int Main ()
9         {
10                 int d = 0;
11                 bar (out d);
12                 return 0;
13         }
14 }