mirror of
https://github.com/github/codeql.git
synced 2026-03-26 17:28:29 +01:00
10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
import csharp
|
|
|
|
where forall(Event e | exists(e.getAddEventAccessor()) implies
|
|
exists(e.getRemoveEventAccessor()))
|
|
select 1
|
|
|