Regression when passing types as #expr arguments. #1461

This commit is contained in:
Christoffer Lerno
2024-09-18 22:16:26 +02:00
parent 3bada4560e
commit 20fd7aba9b
2 changed files with 3 additions and 0 deletions

View File

@@ -34,6 +34,7 @@
- Fix error message when not finding a particular function.
- Crash invoking a `@body` argument with the wrong number of parameters.
- Fix reordering semantics in struct assignment.
- Regression when passing types as `#expr` arguments. #1461
### Stdlib changes
- Additional init functions for hashmap.

View File

@@ -607,6 +607,8 @@ RETRY:
case VARDECL_UNWRAPPED:
break;
case VARDECL_PARAM_EXPR:
// These are never traced, they are folded in use.
break;
case VARDECL_PARAM_CT:
case VARDECL_PARAM_REF:
case VARDECL_PARAM: