(define-module (goops-make-using-non-existing-kw-or-slot) :use-module (oop goops) :export ( dialog no-kw letstry )) (define-class () (dialog :accessor dialog :init-keyword :dialog :init-value #f) (no-kw :accessor no-kw :init-value #f)) (define (letstry) (make :dialog 'dialog-a :no-kw 'no-kw :non-existing-slot 'non-existing-slot)) #! (use-modules (macros push)) (push! "/usr/local/share/guile/alto/2.0/tests" %load-path) (use-modules (goops-make-using-non-existing-kw-or-slot)) (letstry) !#