(define-module (impl-b) #:use-module (oop goops) #:use-module (base) #:export ( func-impl) #:re-export (func)) (define-class ()) (define-method (func (self )) (format #t ": func\n")) (define-method (func-impl (self )) (format #t ": func-impl\n"))