Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-451-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public class A<T> where T : new ()
6 {
7         public T Value = new T ();
8         
9         public class N1 : A<N2>
10         {
11         }
12         
13         public class N2
14         {
15                 public int Foo ()
16                 {
17                         return 0;
18                 }
19         }
20 }