cubecl_core/frontend/
comptime_error.rs

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