bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#33652: let/ec bug


From: Stefan Israelsson Tampe
Subject: bug#33652: let/ec bug
Date: Thu, 6 Dec 2018 23:34:53 +0100

The following code does not compile on guile-2.9:

--------------------------------------------
(define-module (r)
  #:use-module (ice-9 control)
  #:export ())

(define ramanujan
  (lambda ()
  (let/ec break-ret
    (let lp ()
      (break-ret)
      (lp)))))
----------------------------------------------

The error report
;; WARNING: compilation of /home/stis/src/python-on-guile/modules/langua
ge/python/module/r.scm failed:
;;; not found 37

Regards
Stefan

reply via email to

[Prev in Thread] Current Thread [Next in Thread]