cleol
[mcs.git] / tests / gtest-459.cs
blob53ce0c91038171c44e17d6564753633a92163b30
1 using System;
3 namespace GenericTest
5 public class OuterGeneric<T>
7 public class InnerGeneric<U>
9 public static string GetTypeNames ()
11 return typeof (T).ToString () + " " + typeof (U).ToString ();
16 class Program
18 static int Main ()
20 string typeNames = OuterGeneric<int>.InnerGeneric<long>.GetTypeNames ();
21 Console.WriteLine (typeNames);
22 return 0;