aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/name_mismatch_endmacro.rs
blob: 10ea31f57c4eae856a56a3b55b5df39d3a898b7e (plain) (blame)
1
2
3
4
5
6
7
8
use askama::Template;

#[derive(Template)]
#[template(source = "{% macro foo(arg) %} {{arg}} {% endmacro not_foo %}", ext = "html")]
struct NameMismatchEndMacro;

fn main() {
}