2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-393.cs
blob17a5d8159a276474f2a9dd5a444cfeb0f7dd1b45
1 class B<T>
5 [A(typeof (B<>))]
6 public class A : System.Attribute
8 static int ret = 1;
10 public A (System.Type type)
12 if (type == typeof (B<>))
13 ret = 0;
16 public static int Main ()
18 typeof (A).GetCustomAttributes (true);
19 return ret;