* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / unsafe-7.cs
1 // Compiler options: -unsafe
2
3 struct Obsolete {
4         int a;
5 }
6 struct A {
7         int a, b;
8 }
9
10 class MainClass {
11         unsafe public static void Main ()
12         {
13                 System.Console.WriteLine (sizeof (Obsolete));
14         }
15 }
16
17