mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
import java
|
|
|
|
from CompilationUnit cu, Class c
|
|
where
|
|
cu.isCompactSourceFile() and
|
|
c.getCompilationUnit() = cu and
|
|
c.isImplicit()
|
|
select cu, c,
|
|
"Compact source file '" + cu.getName() + "' contains implicit class '" + c.getName() + "'"
|