mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 14:31:36 +00:00
9 lines
177 B
Rust
9 lines
177 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(source = "{% macro foo(arg) %} {{arg}} {% endmacro not_foo %}", ext = "html")]
|
|
struct NameMismatchEndMacro;
|
|
|
|
fn main() {
|
|
}
|