mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
15 lines
266 B
C#
15 lines
266 B
C#
// semmle-extractor-options: --standalone
|
|
|
|
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 };
|
|
}
|
|
}
|