do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-390.cs
1 using System;
2
3 class Program
4 {
5         static int Main ()
6         {
7                 Error error = Error.FILE_NOT_FOUND;
8                 return (error == null) ? 1 : 0;
9         }
10 }
11
12 enum Error
13 {
14         FILE_NOT_FOUND
15 }
16