This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

spurious warning


When I run this, I see a warning:

  8:14: warning - no declaration seen for arithmetic-shift

though the program works. If I use other identifiers from srfi-60, I get more warnings.

    -seth


(define-library (testlib)
  (export foo)
  (import (scheme base)
          (scheme write)
          (srfi 60))
  (begin
    (define (foo)
      (write (arithmetic-shift 1 2))
      (newline))))

(import (scheme base)
        (scheme write)
        (testlib))
(foo)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]