3 public class TestAttribute
: Attribute
11 public TestAttribute() { }
12 public TestAttribute(Type type
)
22 [Test(Type
= typeof(C
<>))] //this shouldn't fail
25 [Test(typeof(C
<>))] // this shouldn't fail
26 public void Bar2() { }
28 [Test(typeof(C
<int>))] // this shouldn't fail
29 public void Bar3() { }
31 [Test(typeof(C
<CC
>))] // this shouldn't fail
32 public void Bar4() { }
37 public static void Main()