2005-09-05 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0208-3.cs
1 // cs0208-3.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 code to #75772, but without field of type T.
5 // Compiler options: /unsafe
6 public class Splay<T>
7 {
8   unsafe private struct Node
9   {
10     private Node *            left, right;
11     private Node *            parent;
12 //    private T                 data;
13
14     public static void Main () {}
15   } 
16 }
17