do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-277.cs
1 // test for bug #56774
2
3 class T {
4         static int Main () {
5                 return X (1);
6         }
7   
8         static int X (byte x) {
9                 return 0;
10         }
11         static int X (short x) {
12                 return 1;
13         }
14 }