mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
195 B
C#
11 lines
195 B
C#
// semmle-extractor-options: --separate-compilation
|
|
|
|
class MultiImpl
|
|
{
|
|
public void M1() => M2("taint source");
|
|
|
|
public void M2(string x) => Check(x);
|
|
|
|
static void Check<T>(T x) { }
|
|
}
|