mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
9 lines
213 B
Plaintext
9 lines
213 B
Plaintext
import cil
|
|
import semmle.code.csharp.commons.Disposal
|
|
|
|
from CIL::Field field
|
|
where
|
|
mayBeDisposed(field) and
|
|
field.getDeclaringType().getQualifiedName() = "DisposalTests.Class1"
|
|
select field.getQualifiedName()
|