Files
codeql/csharp/ql/test/library-tests/expressions/ArrayCreation7.ql
2026-04-01 12:50:37 +02:00

19 lines
543 B
Plaintext

/**
* @name Test for array creations
*/
import csharp
from Assignment a, ArrayCreation e
where
a.getLeftOperand().(VariableAccess).getTarget().hasName("is7") and
e = a.getRightOperand() and
e.isImplicitlyTyped() and
e.isImplicitlySized() and
e.getArrayType().getDimension() = 1 and
e.getArrayType().getRank() = 2 and
e.getArrayType().getElementType() instanceof StringType and
e.getInitializer().getNumberOfElements() = 2 and
e.getInitializer().getElement(0).(ArrayInitializer).getElement(1).getValue() = "null"
select e