2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0416.cs
bloba56ac6f06d77d245a5a8a76a08487559e047ba92
1 // CS0416: `C<T>': an attribute argument cannot use type parameters
2 // Line: 15
4 using System;
6 public class TestAttribute : Attribute
8 public TestAttribute(Type type)
13 class C<T>
15 [Test(typeof(C<T>))]
16 public static void Foo()