Filtering...

no-stobjs-p-tests

books/std/system/no-stobjs-p-tests

Included Books

other
(in-package "ACL2")
include-book
(include-book "no-stobjs-p")
include-book
(include-book "std/testing/assert-bang" :dir :system)
include-book
(include-book "std/testing/must-succeed-star" :dir :system)
other
(assert! (no-stobjs-p 'cons (w state)))
other
(assert! (no-stobjs-p 'len (w state)))
other
(assert! (not (no-stobjs-p 'guard-obligation (w state))))
other
(must-succeed* (defun f (x) x)
  (assert! (no-stobjs-p 'f (w state))))
other
(must-succeed* (defun f (state) (declare (xargs :stobjs state)) state)
  (assert! (not (no-stobjs-p 'f (w state)))))