* ExternTable.cs (ExternTable.GetModuleTypeRef): 'module_table' can be
[mcs.git] / errors / gcs0208-4.cs
blob629888624ae61db6e55a35133262f6ed3a7af940
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.
5 // Compiler options: /unsafe
6 public class Splay<T>
8 unsafe private class Node
10 private Node * left, right;
11 private Node * parent;
12 private T data;