2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git] / mono / dis / tests / gen-cattr.cs
blobadc7ef5e1e2869cfce819484af2d636b23e033f3
1 /* Custom attributes for type parameters */
2 using System;
4 [AttributeUsage(AttributeTargets.GenericParameter)]
5 class GenParAttribute : Attribute {
8 class cons <[GenPar] A> {
9 public void abc <[GenPar] M> () {
13 class Test {
14 public static void Main ()