Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-698.cs
1 // Compiler options: -unsafe
2
3 struct Foo
4 {
5         public int i;
6 }
7
8 public unsafe class test
9 {
10         static Foo* pFoo;
11
12         public static void Main ()
13         {
14                 int* pi = &pFoo->i;
15         }
16 }