2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0208-4.cs
blob08ab214c54cd18e6d4f01eaf28e6826b97804662
1 // cs0208-4.cs : Cannot take the address of, get the size of, or declare a pointer to a managed type `Splay<T>.Node'
2 // Line: 10
3 // Compiler options: /unsafe
4 // similar one to #75772 but using a class instead of a struct.
6 public class Splay<T>
8 unsafe private class Node
10 private Node * parent;
11 private T data;