This is the mail archive of the kawa@sources.redhat.com 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]

bug in `display'


(sorry, this went to the wrong address first) 

Hi Per, 

#|kawa:1|# (define (test-display)
  (let loop ( (x '()) (n 200) )
    (if (zero? n) (display x)
	(loop (cons n (list x)) (- n 1)))))
#|kawa:2|# (test-display)

leads to 

java.lang.ArrayIndexOutOfBoundsException

with JDK version 1.3.1_02.

Best regards, Mirko.


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