Merge pull request #5382 from kumpera/pedump_fix
[mono.git] / mono / tests / bug-82194.2.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Reflection;
4
5 namespace Runner
6 {
7         public class ObjectContainer<T> where T : class, new () {}
8         public class DocumentObject : ObjectContainer<DomainObject> {}
9         public class DomainObject : ObjectContainer<DomainObject> {}
10
11         class Program
12         {
13                 [STAThread]
14                 static int Main (string[] args)
15                 {
16                         Type [] ts = typeof(Program).Assembly.GetTypes ();
17
18                         foreach (Type t in ts)
19                                 Console.WriteLine (t);
20
21                         return 0;
22                 }
23         }
24 }