mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
17 lines
382 B
Plaintext
17 lines
382 B
Plaintext
using System;
|
|
|
|
namespace Assembly
|
|
{
|
|
public class MyAssemblyGeneric1Attribute<T> : Attribute { }
|
|
public class MyAssemblyGeneric2Attribute<T, U> : Attribute { }
|
|
|
|
public class TestAssemblyGenericAttribute
|
|
{
|
|
[MyAssemblyGeneric1Attribute<object>()]
|
|
public void M1() { }
|
|
|
|
[MyAssemblyGeneric2<int, string>()]
|
|
public void M2() { }
|
|
}
|
|
}
|