mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
/**
|
|
* @id cs/examples/empty-block
|
|
* @name Empty blocks
|
|
* @description Finds empty block statements.
|
|
* @tags empty
|
|
* block
|
|
* statement
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from BlockStmt blk
|
|
where blk.isEmpty()
|
|
select blk
|