You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
321 B
16 lines
321 B
// Expect 10 errors (one per function)
|
|
|
|
float2x2 x;
|
|
|
|
void shr_eq() { x >>= 1; }
|
|
void shl_eq() { x <<= 1; }
|
|
void and_eq() { x &= 1; }
|
|
void or_eq() { x |= 1; }
|
|
void xor_eq() { x ^= 1; }
|
|
|
|
void shr() { x = x >> 1; }
|
|
void shl() { x = x << 1; }
|
|
void and() { x = x & 1; }
|
|
void or() { x = x | 1; }
|
|
void xor() { x = x ^ 1; }
|