aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-07-17 16:17:48 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-07-17 16:17:48 +0200
commit1030c7c47732a3aacaa6d270b840b1c14941b4ec (patch)
tree9f79e5442721eb4586998df89d109bed37885e57
parent2b0228cec24e49369634cb8239a1939f0fad7e2e (diff)
Add a bug entry
-rw-r--r--BUGS10
1 files changed, 10 insertions, 0 deletions
diff --git a/BUGS b/BUGS
index 857427b..d30daef 100644
--- a/BUGS
+++ b/BUGS
@@ -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();
+ }