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