Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
ed213567
Commit
ed213567
authored
Jan 08, 2005
by
pfdietz
Browse files
Free declaration scope tests
parent
2184e87b
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/with-output-to-string.lsp
View file @
ed213567
...
...
@@ -103,7 +103,25 @@
(list str1 str2)))
:good)
;;; Free declaration scope
(deftest with-output-to-string.15
(block done
(let ((x :bad))
(declare (special x))
(let ((x :good))
(with-output-to-string (s (return-from done x))
(declare (special x))))))
:good)
(deftest with-output-to-string.16
(block done
(let ((x :bad))
(declare (special x))
(let ((x :good)
(str (make-array '(10) :element-type 'character
:fill-pointer 0)))
(with-output-to-string (s str :element-type (return-from done x))
(declare (special x))))))
:good)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment