Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-591.cs
1 // Compiler options: -r:gtest-591-lib.dll
2
3 using System;
4
5 public class E
6 {
7         public System.Collections.Generic.Dictionary<int, A.B<int>.C> F;
8         public static void Main ()
9         {
10                 var e = new E ();
11                 Console.WriteLine (e.F);
12         }
13 }