Files
codeql/csharp/ql/test/library-tests/dataflow/flowsources/publicparameter/PublicCallableParameterFlowSource.cs
2018-08-02 17:53:23 +01:00

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;
}
}