1// First operand to binary operator "&" must be an integer or bool
2
3float foo(float a, float b) {
4    return a & b;
5}
6