Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-393.cs
1 class B<T>
2 {
3 }
4
5 [A(typeof (B<>))]
6 public class A : System.Attribute
7 {
8         static int ret = 1;
9
10         public A (System.Type type)
11         {
12                 if (type == typeof (B<>))
13                         ret = 0;
14         }
15
16         public static int Main ()
17         {
18                 typeof (A).GetCustomAttributes (true);
19                 return ret;
20         }
21 }