Add setting of The WRAP flag in the Wrap property's set method.
[mono.git] / mcs / tests / gen-35.cs
1 class Test<T>
2 { }
3
4 class Foo<T>
5         where T : Test<T>
6 { }
7
8 class X
9 {
10         static void Main ()
11         {
12                 Foo<int> foo;
13         }
14 }