This is an easy one.
(let ((x))
(if (typep x 'null) "a" "b"))
generate a warning about unreachable code deletion. Presumably the compiler was smart enough to figure that it is only executed once and the type will always be null. I wouldn't normally write that code, but in this case I just don't want the code deletion notice in my output. How can I shut SBCL up about that particular warning? As a note, I also haven't been able to find the right syntax to tell sbcl to set safety to 0 so that I can overflow an integer (educationally)... Perhaps related?
Thanks, Conrad