hfhbd
03/14/2025, 10:51 AMfun foo(one: Int, two: Int = 2)
and I want to create another function that has the same default value for two
from.`foo`: fun foo(one: Int = 1, two: Int = 2) = foo(one = one, two = two)
in my test sourceSet. Is this possible due to the different compilations?Javier
03/14/2025, 11:42 AMsession
to find the original function.