Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-569.cs
1 using System;
2
3 class C
4 {
5         public static void Main ()
6         {
7                 new TreeMap<int> ();
8         }
9 }
10
11 public class TreeMap<T>
12 {
13         class Entry<U>
14         {
15                 internal TreeMap<U>.Entry<int> field;
16         }
17 }
18