Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / gtest-082.cs
1 using System;
2
3 public class Queue<T>
4 {
5         protected class Enumerator
6         {
7                 Queue<T> queue;
8
9                 public Enumerator (Queue<T> queue)
10                 {
11                         this.queue = queue;
12                 }
13         }
14 }
15
16 class X
17 {
18         public static void Main ()
19         { }
20 }