2009-02-28 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / tests / gtest-354.cs
1 // Compiler options: -unsafe
2
3 public unsafe struct A
4 {
5         fixed byte fileid[DbConst.DB_FILE_ID_LEN];
6 }
7
8 public static class DbConst
9 {
10         public const int DB_FILE_ID_LEN = 20;
11 }
12
13 class M
14 {
15         public static void Main ()
16         {
17         }
18 }