[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs0208-11.cs
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `Splay<T>.Node'
2 // Line: 9
3 // Compiler options: /unsafe
4
5 public class Splay<T>
6 {
7   unsafe private struct Node
8   {
9     private Node *            parent;
10     private T                 data;
11   } 
12 }
13