def some_method(a, b, c=5, *p, q) if (q) c=7 other_method(a,b,c,p,q) end def other_method(a, b, c=4, *p, q) end