Add setting of The WRAP flag in the Wrap property's set method.
[mono.git] / mcs / tests / gen-16.cs
1 class Stack<S>
2 {
3         public static void Hello<T> (S s, T t)
4         { }
5 }
6
7 class X
8 {
9         Stack<int> stack;
10
11         static void Main ()
12         {
13         }
14 }