Add setting of The WRAP flag in the Wrap property's set method.
[mono.git] / mcs / tests / gen-10.cs
1 using System;
2
3 interface I
4 {
5         void Hello ();
6 }
7
8 class J
9 {
10         public void Foo ()
11         {
12                 Console.WriteLine ("Foo!");
13         }
14 }
15
16 class Stack<T>
17         where T : J, I
18 {
19         public void Test (T t)
20         {
21                 t.Hello ();
22                 t.Foo ();
23         }
24 }
25
26 class Test
27 {
28 }
29
30 class X
31 {
32         static void Main()
33         {
34         }
35 }