mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
/**
|
|
* @id cs/examples/unused-local-var
|
|
* @name Unused local variable
|
|
* @description Finds local variables that are not accessed.
|
|
* @tags variable
|
|
* local
|
|
* access
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from LocalVariable v
|
|
where not exists(v.getAnAccess())
|
|
select v
|