mirror of
https://github.com/github/codeql.git
synced 2026-03-05 07:06:47 +01:00
11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
/**
|
|
* @name Test for operators
|
|
*/
|
|
import csharp
|
|
|
|
from ExplicitConversionOperator o
|
|
where o.getTargetType() = o.getDeclaringType()
|
|
and o.getSourceType() instanceof ByteType
|
|
select o
|
|
|