[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0208-10.cs
blob6777dba0432c5d1ec8f08764d3e0658dde468e83
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `X<A>'
2 // Line: 12
3 // Compiler options: -unsafe
5 class X <Y> {
8 unsafe class A {
10 static void Main ()
12 int size = sizeof (X<A>);