1comptime { 2 const a: i32 = 1; 3 const b: i32 = 0; 4 const c = a % b; 5 _ = c; 6} 7 8// error 9// 10// :4:19: error: division by zero here causes illegal behavior