Files
Nim/tests/concepts
ringabout 568eccd7f8 fixes #25617; handle backend type aliasing in procParamTypeRel (#25692)
fixes #25617

This pull request introduces a stricter check for parameter type
relations in the `procParamTypeRel` procedure. Specifically, it ensures
that two types are not only structurally equal but also have the same
backend type, taking type aliases into account.

Type relation checks:

*
[`compiler/sigmatch.nim`](diffhunk://#diff-251afcd01d239369019495096c187998dd6695b6457528953237a7e4a10f7138R787-R789):
In `procParamTypeRel`, added a check to ensure that if two types are
considered equal (`isEqual`), they must also have the same backend type
(using `sameBackendTypePickyAliases`). If not, the result is set to
`isNone`, preventing false positives when type aliases differ.
2026-05-06 08:44:09 +02:00
..
2017-06-20 11:29:42 +02:00
2017-07-25 09:28:23 +02:00
2015-03-25 13:21:50 +01:00
2022-09-23 13:05:05 +02:00
2020-10-30 09:57:26 +01:00
2017-12-21 11:04:05 +01:00
2024-12-04 12:16:51 +08:00
2017-12-21 11:06:36 +01:00
2017-07-25 09:28:23 +02:00
2018-08-21 22:14:12 +02:00
2018-12-11 21:23:21 +01:00
2018-03-24 15:28:09 +01:00
2022-09-23 13:05:05 +02:00
2015-03-25 13:21:50 +01:00
2019-04-02 08:23:13 +02:00
2021-04-06 16:20:01 +02:00