I have to solve this quinz but i can't find the correct answer.
trait Physics {
implicit def air: Gaz,
implicit def condense(implicit gaz: Gaz): Liquid,
implicit def freeze(implicit liquid: Liquid): Solid
implicitly[Solid]
}
Can you rewrite the last line with the inferred parameter explicitly written?
Hint: It should look like implicitly[Solid](...
Thank you so much!