do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-365.cs
1 using System;
2
3 namespace B
4 {
5         class Program
6         {
7                 static int Main()
8                 {
9                         int? i = 0;
10                         bool b = i == (int?)null;
11                         if (b)
12                                 return 1;
13                         
14                         if (i == (int?)null)
15                                 return 2;
16                                 
17                         Console.WriteLine (b);
18                         return 0;
19                 }
20         }
21 }
22