1 2 3 4 5 6 7 8 9 10 11
//TEST_IGNORE_FILE: float pow_(float x, float n) { return pow(x, n); } float max_(float x, float y) { return max(x, y); }