- @is_const is deprecated in favour of directly using $defined.

- `@is_lvalue(#value)` is deprecated in favour of directly using `$defined`.
This commit is contained in:
Christoffer Lerno
2025-08-27 18:21:55 +02:00
parent 3c6e6f1965
commit 7312c10b9e
6 changed files with 10 additions and 9 deletions

View File

@@ -69,7 +69,7 @@ alias VoidFn = fn void();
macro scope.
@param #variable : `the variable to store and restore`
@require values::@is_lvalue(#variable)
@require $defined(#variable = #variable) : `Expected an actual variable`
*>
macro void @scope(#variable; @body) @builtin
{