Files
codeql/csharp/ql/test/library-tests/dataflow/global/MultiImplementationA.cs
2024-07-11 16:52:18 +02:00

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) { }
}