mirror of
https://github.com/github/codeql.git
synced 2026-02-12 13:11:20 +01:00
7 lines
135 B
Plaintext
7 lines
135 B
Plaintext
import java
|
|
|
|
from UnaryExpr ue
|
|
where not exists(ue.getExpr())
|
|
or exists(Expr e, int i | e.isNthChildOf(ue, i) and i != 0)
|
|
select ue
|