Merge pull request #5234 from vkargov/vk-kiokunegi
[mono.git] / mcs / errors / cs0208-12.cs
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.
5
6 public class Splay<T>
7 {
8   unsafe private struct Node
9   {
10     private Node *            parent;
11   } 
12 }
13