mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-01 13:49:13 +00:00
0bc81aecf4
Our current algorithm marks function as used if it is called at least ones, even if the callee function is itself unused. This commit implements more clever traversal to collect usage information more precisely. Signed-off-by: Evgeniy Stratonikov <evgeniy@nspcc.ru>
6 lines
74 B
Go
6 lines
74 B
Go
package inner
|
|
|
|
// Return65 returns 65.
|
|
func Return65() int {
|
|
return 65
|
|
}
|