mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
Due to a probable compiler bug (?) the redeclaration looks like a fake symbol, leading to Java dispatching against a declaration that Kotlin doesn't believe exists.
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
import java
|
|
|
|
from Method m
|
|
where
|
|
m.getDeclaringType().getName() = ["Test", "CharSequence"] and
|
|
m.getName() = ["toString", "equals", "hashCode"]
|
|
select m.getName(), m.getDeclaringType().getQualifiedName()
|