mirror of
https://github.com/github/codeql.git
synced 2026-03-27 01:38:22 +01:00
10 lines
145 B
Plaintext
10 lines
145 B
Plaintext
/**
|
|
* @name Test that there are no backing fields
|
|
*/
|
|
import csharp
|
|
|
|
from Field f
|
|
where f.fromSource()
|
|
select f.getName() as name
|
|
order by name
|