Comment 1 for bug 185276

Revision history for this message
Abdulaziz Ghuloum (aghuloum) wrote :

Fixed in 1366. Thanks. This is what I get now:

> (trace-define (A x) (values))
> (trace-define (B x) (* x x))
> (begin (A 1) (B 1))
|(A 1)
|
|(B 1)
|1
1
> (trace-define (A2 x) (void))
> (begin (A2 1) (B 1))
|(A2 1)
|#<void>
|(B 1)
|1
1
> (trace-define (A3 x) (values x x x))
> (begin (A3 1) (B 1))
|(A3 1)
|1 1 1
|(B 1)
|1
1
> ^D