[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0208-11.cs
blobb5b95bc1e80f48519d0ec3897c904a7948f38333
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
5 public class Splay<T>
7 unsafe private struct Node
9 private Node * parent;
10 private T data;