[mono-api-html] Add solution.
[mono.git] / mcs / tests / gtest-606-lib.cs
1 // Compiler options: -t:library
2
3 using System.Collections.Generic;
4
5 public sealed class SD<K, V>
6 {
7         public struct S
8         {
9                 public struct E
10                 {
11                         private Stack<A> s;
12                 }
13         }
14
15         private class A 
16         {
17         }
18 }