Files
codeql/csharp/ql/test/library-tests/standalone/controlflow/ControlFlow.cs
2021-07-01 16:09:11 +02:00

13 lines
223 B
C#

using System;
class Cfg
{
void F()
{
var v = new InvalidType();
Debug.Assert(v.a.b, "This is true");
new CounterCreationData() { CounterHelp = string.Empty, CounterType = v.Type };
}
}