mirror of
https://github.com/github/codeql.git
synced 2026-04-19 14:04:09 +02:00
10 lines
224 B
Plaintext
10 lines
224 B
Plaintext
/**
|
|
* @name Test that there are no backing fields except for properties that use the `field` keyword in their getter or setter.
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Field f
|
|
where f.fromSource()
|
|
select f.getName() as name order by name
|