[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-503.cs
1 using System;
2
3 public class TestAttribute : Attribute
4 {
5         public TestAttribute (Type type)
6         {
7         }
8 }
9
10 class C<T>
11 {
12         [Test (typeof (N<>))]
13         public class N<U>
14         {
15         }
16 }
17
18 class A
19 {
20         public static int Main ()
21         {
22                 if (typeof (C<>.N<>).GetCustomAttributes (true).Length != 1)
23                         return 1;
24
25                 return 0;
26         }
27 }