do not check order sequence if option /order was not used
[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         static void Main ()
18         {
19         }
20 }
21