test74
auto test74 =
q{--- test74
// Test nested call expression
struct GameMap;
GameMap* pass_ptr_and_struct(GameMap* map) {
return create_room(map, Rect(1,1,5,5));
}
struct Rect {
i32 x1;
i32 y1;
i32 x2;
i32 y2;
}
GameMap* create_room(GameMap* map, Rect room) {
return map;
}
};
tests passing
functionsvariables