Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. (defstruct foo
  2. (a 0.0 :type single-float))
  3. (defstruct (bar (:include foo)))
  4. (defstruct foo
  5. (a 0.0d0 :type double-float)) ;; pick continue restart
  6. (compile nil '(lambda () (defstruct (bar (:include foo)))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement