[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0208-10.cs
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
4
5 class X <Y> {
6 }
7
8 unsafe class A {
9
10         static void Main ()
11         {
12                 int size = sizeof (X<A>);
13         }
14 }