mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
/**
|
|
* @name Test for object creations
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Assignment a, CollectionInitializer i
|
|
where
|
|
a.getLValue().(VariableAccess).getTarget().hasName("list1") and
|
|
i.getParent+() = a and
|
|
i.getElementInitializer(0).getArgument(0) instanceof AssignExpr
|
|
select i.getAChild+()
|