mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
175 B
Plaintext
8 lines
175 B
Plaintext
import semmle.code.csharp.Conversion
|
|
|
|
from Type sub, Type sup
|
|
where
|
|
convNumeric(sub, sup) and
|
|
sub != sup
|
|
select sub.toString() as s1, sup.toString() as s2 order by s1, s2
|