mirror of
https://github.com/github/codeql.git
synced 2026-04-27 09:45:15 +02: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
|
|
|