Expand description
Direct Rf_error/Rf_errorcall usage lint.
- MXL300: Warns on direct
Rf_error/Rf_errorcallcalls in user code. These longjmp through Rust frames, bypassing destructors unless wrapped inR_UnwindProtect. Preferpanic!()orErr(...)which produce structured R condition objects via the tagged-condition transport.