diff options
author | metagn <metagngn@gmail.com> | 2024-09-09 12:29:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 11:29:30 +0200 |
commit | a6595e5b49ffa94947a2e5767263f523cd827c44 (patch) | |
tree | 59d0af7aa0d049257c1d82ef5d554cd5202486ab /changelog.md | |
parent | 9ff0333a4ccffb253f03fc113d086bbc81b566e9 (diff) | |
download | Nim-a6595e5b49ffa94947a2e5767263f523cd827c44.tar.gz |
open new scope for const values (#24084)
fixes #5395 Previously values of `const` statements used the same scope as the `const` statement itself, meaning variables could be declared inside them and referred to in other statements in the same block. Now each `const` value opens its own scope, so any variable declared in the value of a constant can only be accessed for that constant. We could change this to open a new scope for the `const` *section* rather than each constant, so the variables can be used in other constants, but I'm not sure if this is sound.
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 305409fa5..67b6c74f8 100644 --- a/changelog.md +++ b/changelog.md @@ -41,6 +41,16 @@ bar[int]() # before: (1.0, "abc"), now: type mismatch, missing generic parameter ``` +- `const` values now open a new scope for each constant, meaning symbols + declared in them can no longer be used outside or in the value of + other constants. + + ```nim + const foo = (var a = 1; a) + const bar = a # error + let baz = a # error + ``` + ## Standard library additions and changes [//]: # "Changes:" |