I'm trying to use the record #:parent property to refactor some code. I'm unable to use the parent property of a record, what is the proper usage of this property?
(define-record-type <particle> (make-particle) particle? ;; omitted) (define-record-type <prop> #:parent <particle> (make-prop) prop? ;; omitted)