mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
/**
|
|
* @name Test for operators
|
|
*/
|
|
import csharp
|
|
|
|
from ImplicitConversionOperator o
|
|
where o.getSourceType() = o.getDeclaringType()
|
|
and o.getTargetType() instanceof ByteType
|
|
select o
|
|
|