Revert "Prevent name clashes between CL structures and builtin types"

This reverts commit 151496a4b9.
That commit breaks bootstrap builds due to a cyclic dependency.
This commit is contained in:
Philipp Stephani 2018-01-07 14:14:38 +01:00
parent 6735df4443
commit 610dad1102
5 changed files with 0 additions and 58 deletions

View file

@ -497,13 +497,4 @@ collection clause."
vconcat (vector (1+ x)))
[2 3 4 5 6])))
(ert-deftest cl-defstruct/builtin-type ()
(should-error
(macroexpand '(cl-defstruct hash-table))
:type 'wrong-type-argument)
(should-error
(macroexpand '(cl-defstruct (hash-table (:predicate hash-table-p))))
:type 'wrong-type-argument))
;;; cl-macs-tests.el ends here