mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
13 lines
223 B
C#
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 };
|
|
}
|
|
}
|