mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
8 lines
93 B
Go
8 lines
93 B
Go
package main
|
|
|
|
func shiftGood(base int64) int64 {
|
|
return base << 40
|
|
}
|
|
|
|
var x2 = shiftGood(1)
|