mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
8 lines
181 B
Plaintext
8 lines
181 B
Plaintext
import java
|
|
|
|
from Class c, string res
|
|
where
|
|
exists(c.getCompilationUnit().getRelativePath()) and
|
|
if c.isImplicit() then res = "implicit" else res = "not implicit"
|
|
select c, res
|