index
:
gocapturedrefrace
master
Analyser that reports captured variable references in goroutine closures
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
testdata
/
function_argument.go
blob: 5a38ae2a293f673e3724004d87ca2a3525bd6fc3 (
plain
)
1
2
3
4
5
6
7
package
main
func
functionArgument
(
callback
func
())
{
go
func
()
{
callback
()
}()
}