Files
codeql/csharp/ql/test/library-tests/dataflow/ssa/DefaultParam.cs
2026-04-29 14:01:08 +02:00

8 lines
109 B
C#

class DefaultParam
{
string M1(bool b, string s = "", int i = 0)
{
return b + s + i;
}
}