2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-503.cs
blob56dca2049a84b07b865000eaf5ccf7f115f6022f
1 using System;
3 public class TestAttribute : Attribute
5 public TestAttribute (Type type)
10 class C<T>
12 [Test (typeof (N<>))]
13 public class N<U>
18 class A
20 public static int Main ()
22 if (typeof (C<>.N<>).GetCustomAttributes (true).Length != 1)
23 return 1;
25 return 0;