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