mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
142 B
C#
9 lines
142 B
C#
class MultiImpl
|
|
{
|
|
public void M1() => M2("taint source");
|
|
|
|
public void M2(string x) => Check(x);
|
|
|
|
static void Check<T>(T x) { }
|
|
}
|