A little while ago, I noticed that when passing a Proc as a callback function to a C function in Crystal, if it is not wrapped as a closure using the Box class, referencing an external variable causes Crystal to terminate in a way that feels mysterious to me at runtime. This phenomenon is neither a runtime error nor a segmentation fault? Rather, it seems that Crystal detects the anomaly and gracefully terminates the program.
What is the correct term to describe this behavior? Also, are there any other interesting edge cases in Crystal where compilation succeeds but unexpected termination occurs at runtime?
Could you show an example of the behaviour you describe?
This really shouldn’t be happening.
The compiler knows wether a proc references closured variables and should prevent passing them to lib functions.
fun c_call(proc : -> Int32) : Int32
proc.call
end
x = 1
c_call ->() { x } # Error: can't send closure to C function (closured vars: x)
I thought I saw that a few months ago, but remembered it today and asked the question… I probably won’t be able to reproduce it. Maybe I am remembering it wrong. But if I see this again I will report back. I thought this was an interesting behavior of Crystal, not a bug.