Opened 9 years ago
Last modified 17 months ago
#392 new defect
deftype doesn't accept dotted lambda-lists
Reported by: | http://stassats.livejournal.com/ (2) | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.9.3 |
Component: | interpreter | Version: | 1.4.0-dev |
Keywords: | Cc: | ||
Parent Tickets: |
Description
(deftype foo (x . y) (list x y))
#<THREAD "interpreter" {7CFBC3}>: Debugger invoked on condition of type TYPE-ERROR
The value Y is not of type LIST.
Change History (15)
comment:1 Changed 9 years ago by
Component: | compiler → interpreter |
---|---|
Milestone: | → 1.4.0 |
Version: | → 1.4.0-dev |
comment:2 Changed 9 years ago by
comment:7 Changed 4 years ago by
Milestone: | 1.6.2 → 1.7.0 |
---|
comment:12 Changed 3 years ago by
Milestone: | 1.8.1 → 1.9.0 |
---|
comment:13 Changed 21 months ago by
Milestone: | 1.9.0 → 1.9.1 |
---|
comment:14 Changed 21 months ago by
Milestone: | 1.9.1 → 1.9.2 |
---|
comment:15 Changed 17 months ago by
Milestone: | 1.9.2 → 1.9.3 |
---|
Note: See
TracTickets for help on using
tickets.
Or any destructiring:
(deftype foo ((x) y) (list x y))
#<THREAD "interpreter" {7CFBC3}>: Debugger invoked on condition of type PROGRAM-ERROR