Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-672.cs
1 // Compiler options: -unsafe
2
3 struct S
4 {
5 }
6
7 class X
8 {
9         unsafe int* Foo {
10                 get { return null; }
11         }
12
13         unsafe S* Foo2 {
14                 get { return null; }
15         }
16
17         public static void Main ()
18         {
19         }
20 }
21