mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-04 22:48:38 +00:00
fixes #25014 `implicitConv` tries to instantiate the supertype to convert to, previously the bindings of `m` was shared with the bindings of the converter but now an isolated match `convMatch` holds the bindings, so `convMatch` is now used in the call to `implicitConv` instead of `m` so that its bindings are used when instantiating the supertype.