summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0208-13.cs
blob: 305e6d03fdab114f4d521966e9c27cda36d5f8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `Splay<T>.Node'
// Line: 9
// Compiler options: /unsafe

public class Splay<T>
{
  unsafe private class Node
  {
    private Node *            parent;
    private T                 data;
  } 
}