[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0208-15.cs
blob92ac71ab3f5412e42878aba4ef00884b411ccec5
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `S<int>.N'
2 // Line: 16
3 // Compiler options: -unsafe
5 struct S<T>
7 public struct N
12 unsafe class Test
14 public static void Main()
16 S<int>.N* a;