Advertisement
Guest User

Untitled

a guest
Dec 24th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. (:specified (test eql) ())
  2.  
  3. (:specified (test foo) (:test foo))
  4. (:specified (test-not bar) (:test-not bar))
  5. (:specified type-error (:test nil))
  6. (:specified type-error (:test-not nil))
  7.  
  8. (:unspecified (test foo) (:test foo :test-not nil))
  9. (:unspecified (test-not bar) (:test nil :test-not bar))
  10. (:unspecified error (:test foo :test-not bar))
  11. (:unspecified error (:test nil :test-not nil))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement