mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
22 lines
346 B
C#
22 lines
346 B
C#
using System;
|
|
|
|
namespace GitHub.CodeQL;
|
|
|
|
public class PublicGenericClass<T, T2> : PublicGenericInterface<T>
|
|
{
|
|
public void stuff(T arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
|
|
public void stuff2<T2>(T2 arg)
|
|
{
|
|
Console.WriteLine(arg);
|
|
}
|
|
|
|
public TNode summaryStuff<TNode>(TNode arg)
|
|
{
|
|
return arg;
|
|
}
|
|
}
|