diff options
Diffstat (limited to 'test-suite/tests/interp.test')
-rw-r--r-- | test-suite/tests/interp.test | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test-suite/tests/interp.test b/test-suite/tests/interp.test deleted file mode 100644 index 18218d6d3..000000000 --- a/test-suite/tests/interp.test +++ /dev/null @@ -1,16 +0,0 @@ -;;;; interp.test --- tests for bugs in the Guile interpreter -*- scheme -*- -;;;; We'll put a copyright on this as soon as it's big enough to copyright. - -(pass-if "Internal defines 1" - (letrec ((foo (lambda (arg) - (or arg (and (procedure? foo) - (foo 99)))))) - (define bar (foo #f)) - (foo #f))) - -(pass-if "Internal defines 2" - (letrec ((foo 77) - (bar #f) - (retfoo (lambda () foo))) - (define baz (retfoo)) - (retfoo))) |