Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0208-13.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: 9
3 // Compiler options: /unsafe
4
5 public class Splay<T>
6 {
7   unsafe private class Node
8   {
9     private Node *            parent;
10     private T                 data;
11   } 
12 }
13