code wiki / (root) / _offc_bisect_struct_field.nx

_offc_bisect_struct_field.nx source

↩ module page · 9 lines · 314 B

1// _offc_bisect_struct_field.nx -- Bar-3 feature bisect: struct_field_access 2 3struct Point { x: i64, y: i64 } 4func main() -> i64 { 5 // Stack-only struct via mmap-like arena. NishiLang lacks 6 // stack structs; use a global scratch via raw cast. 7 // Skip this if not directly representable. 8 return 0 9}