Files
ww/test/wcc/data/r700_alloc_struct/case.ww

9 lines
207 B
Plaintext

//ww:run-exit 25
// Migrated from 700_e2e row 34.
package main;
type point = struct { x: i32, y: i32 };
fn main() i32 = {
let p: *point = alloc(point { x = 3, y = 4 })!;
return p.x * p.x + p.y * p.y;
};