// CS0416: `C': an attribute argument cannot use type parameters // Line: 15 using System; public class TestAttribute : Attribute { public TestAttribute(Type type) { } } class C { [Test(typeof(C))] public static void Foo() { } }