mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
/**
|
|
* @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
|