askama/testing/tests/ui/macro-caller.rs
Michael Pollind f08ca469c9 add more test add reserved word caller
Signed-off-by: Michael Pollind <mpollind@gmail.com>
2025-05-22 22:50:40 +02:00

9 lines
154 B
Rust

use askama::Template;
#[derive(Template)]
#[template(source = "{%- macro caller() -%}{%- endmacro -%}", ext = "html")]
struct MacroSuper;
fn main() {
}