Files
ww/test/wcc/data/r700_compound_bitops/case.ww
Hojun-Cho 956246b3f0 test: migrate 700_e2e rows to corpus fixtures; retire the carrier
136 rows migrated, 0 already owned, 3 wwstage-failing rows held out.
2026-08-08 14:10:46 +09:00

10 lines
180 B
Plaintext

//ww:run-exit 96
// Migrated from 700_e2e row 30.
package main;
fn main() i32 = {
let x: i32 = 100;
x &= 0x3f; x |= 0x80; x ^= 0xc4;
x *= 2; x <<= 1; x >>= 2;
return x;
};