[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0208-12.cs
blob561b6fb7db2c7342cae0e19cfde6a5e270404b19
1 // CS0208: 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 code to #75772, but without field of type T.
6 public class Splay<T>
8 unsafe private struct Node
10 private Node * parent;