mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
210 B
Plaintext
14 lines
210 B
Plaintext
/**
|
|
* @name Function
|
|
* @description Finds functions called "main".
|
|
* @id go/examples/mainfunction
|
|
* @tags function
|
|
* main
|
|
*/
|
|
|
|
import go
|
|
|
|
from Function main
|
|
where main.getName() = "main"
|
|
select main
|