diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-17 16:17:48 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-17 16:17:48 +0200 |
commit | 1030c7c47732a3aacaa6d270b840b1c14941b4ec (patch) | |
tree | 9f79e5442721eb4586998df89d109bed37885e57 /BUGS | |
parent | 2b0228cec24e49369634cb8239a1939f0fad7e2e (diff) |
Add a bug entry
Diffstat (limited to 'BUGS')
-rw-r--r-- | BUGS | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -33,3 +33,13 @@ foo :: () { bar :: () { foo := 5; } } + +4. The following code breaks for a yet unknown reason. This will + perhaps be automatically resolved when the scoping issues are ironed + out when bug #1 is fixed. + + X :: 42; + foo :: () { + bar :: () int { return X; } + x := bar(); + } |