-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Minimum example:
from kirin.prelude import basic
from kirin.dialects import ilist
print('Starting')
try:
@basic
def trigger_seg_fault_on_compile():
def closure(i):
ilist.map(closure, range(4))
return closure(0)
except BaseException as e:
print('Exception', e) # This line is not run because segfault is not catchable
print('This line is not reached')% uv run python crash.py
Starting
% echo $? # Process exited with code 139
139Metadata
Metadata
Assignees
Labels
No labels