On Sat 14 Dec 2019 14:31, Göran Weinholt <go...@weinholt.se> writes:
> The following program works in Guile 2.2.6 (and other R6RS > implementations), but raises an exception in Guile 2.9.7. A field called > "name" exists in record type a and record type b, but there is no actual > naming conflict as I understand it. > > (import (rnrs)) > > (define-record-type a > (fields name)) > > (define-record-type b > (parent a) > (fields name)) > > (let ((x (make-b 'a 'b))) > (write (list (a-name x) > (b-name x))) > (newline)) Fixed in master. Thanks for the report! Andy