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