[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0208-13.cs
blob305e6d03fdab114f4d521966e9c27cda36d5f8b0
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
5 public class Splay<T>
7 unsafe private class Node
9 private Node * parent;
10 private T data;