Hi there, can you help me understand what "With im...
# language-evolution
h
Hi there, can you help me understand what "With implicit context receiver, call is ambiguous. Specify the receiver explicitly" means and how to workaround/resolve it?
a
if you replace the current
hold(...)
with this:
Copy code
this.hold(duration = 5.minutes)
this@createSimulation.hold(duration = 5.minutes)
does it change anything?
h
No it does not.