bbbe34cc19fb5980a508a747933f14fc8de01b5c
[mono.git] / mcs / tests / gen-31-exe.cs
1 // Compiler options: -r:gen-31-dll.dll
2
3 public class X
4 {
5         public static void Test (Bar<int,string> bar)
6         {
7                 bar.Hello ("Test");
8                 bar.Test (7, "Hello");
9         }
10
11         static void Main ()
12         { }
13 }