Add setting of The WRAP flag in the Wrap property's set method.
[mono.git] / mcs / tests / gen-31-exe.cs
1 public class X
2 {
3         public static void Test (Bar<int,string> bar)
4         {
5                 bar.Hello ("Test");
6                 bar.Test (7, "Hello");
7         }
8
9         static void Main ()
10         { }
11 }