Skip to main content

ruda_kernel/dsl/frontend/
comptime_error.rs

1use ruda_core::ir::Scope;
2
3pub fn expand<T>(_scope: &mut Scope, content: &str) -> T {
4    panic!("{content}")
5}