Files
codeql/csharp/ql/test/library-tests/conversion/identity/Identity.ql
2018-12-20 10:19:59 +01:00

8 lines
176 B
Plaintext

import semmle.code.csharp.Conversion
from Type sub, Type sup
where
convIdentity(sub, sup) and
sub != sup
select sub.toString() as s1, sup.toString() as s2 order by s1, s2