mirror of
https://github.com/github/codeql.git
synced 2026-02-28 04:43:42 +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
|
|
|