Files
codeql/csharp/ql/test/library-tests/dataflow/ssa/IsLiveOutRefParameterDefinition.ql
2026-05-04 11:49:24 +02:00

9 lines
237 B
Plaintext

import csharp
private import semmle.code.csharp.dataflow.internal.SsaImpl as SsaImpl
from Ssa::SourceVariable v, SsaDefinition def
where
v = def.getSourceVariable() and
SsaImpl::isLiveOutRefParameterDefinition(def, _)
select v, def