Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-407.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