2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / tests / bug-82194.2.cs
blob2da35b9448182c0fb3f937519d693bdc18301480
1 using System;
2 using System.Collections.Generic;
3 using System.Reflection;
5 namespace Runner
7 public class ObjectContainer<T> where T : class, new () {}
8 public class DocumentObject : ObjectContainer<DomainObject> {}
9 public class DomainObject : ObjectContainer<DomainObject> {}
11 class Program
13 [STAThread]
14 static int Main (string[] args)
16 Type [] ts = typeof(Program).Assembly.GetTypes ();
18 foreach (Type t in ts)
19 Console.WriteLine (t);
21 return 0;