mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
18 lines
289 B
C#
18 lines
289 B
C#
using System;
|
|
using System.Collections.Specialized;
|
|
|
|
class PublicCallableParameterFlowSource
|
|
{
|
|
public void M1(string x, out string y, ref string z)
|
|
{
|
|
y = x;
|
|
y = z;
|
|
}
|
|
|
|
void M2(string x, out string y, ref string z)
|
|
{
|
|
y = x;
|
|
y = z;
|
|
}
|
|
}
|