aboutsummaryrefslogtreecommitdiff
path: root/BUGS
diff options
context:
space:
mode:
Diffstat (limited to 'BUGS')
-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();
+ }