do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-176.cs
1 using System;
2
3 //
4 // ~ constant folding
5 //
6 class X {
7         const byte b = 0x0f;
8         
9         static int Main ()
10         {
11                 int x = ~b;
12                 byte bb = 0xf;
13                 
14                 if (~bb != x){
15                         Console.WriteLine ("{0:x}", x);
16                         return 1;
17                 }
18                 return 0;
19         }
20 }