[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0208-17.cs
bloba0127ab9e20fe2fa8fa309c970aa1658f53661d8
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `T'
2 // Line: 7
3 // Compiler options: -unsafe
5 unsafe class Foo<T> where T : struct
7 public T* Elements {
8 get {
9 return null;