Filtering...

macro-symbol-listp-tests

books/std/system/macro-symbol-listp-tests

Included Books

other
(in-package "ACL2")
include-book
(include-book "macro-symbol-listp")
include-book
(include-book "std/testing/assert-bang" :dir :system)
include-book
(include-book "std/testing/must-succeed-star" :dir :system)
other
(assert! (macro-symbol-listp nil (w state)))
other
(assert! (macro-symbol-listp '(append + * *) (w state)))
other
(assert! (not (macro-symbol-listp '(append binary-+) (w state))))
other
(must-succeed* (defmacro m (x) `(list ,X))
  (defmacro n (x) `(cons ,X ,X))
  (assert! (macro-symbol-listp '(m n append) (w state))))