do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-109.cs
1 using System;
2
3 class T {
4         static int Main ()
5         {
6                 //
7                 // Just a test to compile the following:
8                 //
9                 string a = "Time is: " + DateTime.Now;
10
11                 return 0;
12         }
13 }