Add setting of The WRAP flag in the Wrap property's set method.
[mono.git] / mcs / tests / gen-12.cs
1 class Stack<S>
2 {
3         public void Hello (S s)
4         { }             
5 }
6
7 class Test<T> : Stack<T>
8 {
9         public void Foo (T t)
10         { }
11 }
12
13 class X
14 {
15         Test<int> test;
16
17         void Test ()
18         {
19                 test.Foo (4);
20                 test.Hello (3);
21         }
22
23         static void Main ()
24         { }
25 }