repo.or.cz
/
sbcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
safepoint: Remove unused context argument.
[sbcl.git]
/
tests
/
derived-function-type-casts.lisp
blob
c6ab258933e87a59897067152424678323104a67
1
(
defun
derived-function-type-casts-make-fun
() (
lambda
()))
2
3
(
defun
derived-function-type-casts
()
4
(
let
((
a
(
derived-function-type-casts-make-fun
))
5
(
b
(
derived-function-type-casts-make-fun
)))
6
(
funcall
a
)
7
(
funcall
b
)))