2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0208-2.cs
blobbcd4d04cf13efe46c12f4c3c6747869ff8c31e5d
1 // cs0208-2.cs : 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
5 public class Splay<T>
7 unsafe private struct Node
9 private Node * parent;
10 private T data;