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

#[derive(Template)]
#[template(source = "{% block foo %}{% endblock not_foo %}", ext = "html")]
struct NameMismatchEndBlock;

fn main() {
}