mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
152 B
Plaintext
10 lines
152 B
Plaintext
import java
|
|
|
|
from Expr e, int n
|
|
where n = count(e.getType())
|
|
and n != 1
|
|
// Java #144
|
|
and not e instanceof ReflectiveAccessAnnotation
|
|
select e, n
|
|
|