do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-350.cs
1 using System;
2
3 public class A
4 {
5     [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
6     public class BAttribute : Attribute
7     {
8     }
9 }
10
11
12 [A.B()]
13 public class C
14 {
15         static void Main () {}
16 }