merge -r 60439:60440
[mono.git] / mono / dis / tests / gen-cattr.cs
1 /* Custom attributes for type parameters */
2 using System;
3
4 [AttributeUsage(AttributeTargets.GenericParameter)]
5 class GenParAttribute : Attribute {
6 }
7
8 class cons <[GenPar] A> {
9         public void abc <[GenPar] M> () {
10         }
11 }
12
13 class Test {
14         public static void Main ()
15         {
16         }
17 }