2004-12-06 Zoltan Varga <vargaz@freemail.hu>
[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 }