BUGFIX-66
Bug 2: Confused By Operator Precedence
Bit 0 is the least significant bit.
We are testing bit 7: Is it 1?
Fix The Tiny Bug In This Go Code:
func bitSevenIsSet(in uint64) bool { return in&1<<7 != 0 }
To receive a hint, submit unfixed code.