do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-partial-06.cs
1 // Compiler options: -langversion:default
2
3 partial class Foo
4 {
5         ~Foo ()
6         { }
7 }
8
9 partial class Foo
10 { }
11
12 class B { static void Main () {} }
13