In ilasm/tests:
[mcs.git] / errors / gcs0208-2.cs
blob553ba7190d284fef7386c7105b6e521ee570aaa4
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: 8
3 // Compiler options: /unsafe
4 public class Splay<T>
6 unsafe private struct Node
8 private Node * left, right;
9 private Node * parent;
10 private T data;