do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-388.cs
1 using System;
2
3 class Data {
4   public int Value;
5 }
6
7 class Foo {
8   static void f (Data d)
9   {
10     if (d.Value != 5)
11       throw new Exception ();
12   }
13
14   static void Main ()
15   {
16     Data d;
17     f (d = new Data () { Value = 5 });
18   }
19 }