Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0416-3.cs
blobb6eed9bc98b2ee53ac349ca057f6ba66e98fb8a1
1 // CS0416: `C<T>.N': an attribute argument cannot use type parameters
2 // Line: 17
4 using System;
6 public class TestAttribute : Attribute
8 public TestAttribute(Type type)
13 class C<T>
15 class N
17 [Test(typeof(N))]
18 public static void Foo()