bug#24454: GOOPS problem with GNU Guile 2.1.4

2017-02-26 Thread Jan Wedekind
On Wed, 22 Feb 2017, Andy Wingo wrote: On Sat 17 Sep 2016 22:43, Jan Wedekind writes: The following program works fine under GNU Guile 2.0.12: (use-modules (oop goops)) (define-generic native-type) (define-method (native-type (i ) . args) 0) (define-method (native-type (i ) .

bug#24454: GOOPS problem with GNU Guile 2.1.4

2017-02-22 Thread Andy Wingo
On Sat 17 Sep 2016 22:43, Jan Wedekind writes: > The following program works fine under GNU Guile 2.0.12: > > (use-modules (oop goops)) > (define-generic native-type) > (define-method (native-type (i ) . args) 0) > (define-method (native-type (i ) . args) 1) > (define-method (

bug#24454: GOOPS problem with GNU Guile 2.1.4

2016-09-17 Thread Jan Wedekind
Hi, The following program works fine under GNU Guile 2.0.12: (use-modules (oop goops)) (define-generic native-type) (define-method (native-type (i ) . args) 0) (define-method (native-type (i ) . args) 1) (define-method (native-type (b ) . args) 2) (native-type 1) (na