6 lines
102 B
Plaintext
6 lines
102 B
Plaintext
// Illegal to use ^= operator with floating-point
|
|
|
|
float foo(float a, float b) {
|
|
return a ^= b;
|
|
}
|