aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/extends.rs
blob: 55c8b56dabab296091106b99e7431c9e3c7e5cdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use askama::Template;

#[derive(Template)]
#[template(
    source = r#"{%- extends "whatever.html" %}"#,
    ext = "html"
)]
struct ExtendsPre;

#[derive(Template)]
#[template(
    source = r#"{% extends "whatever.html" -%}"#,
    ext = "html"
)]
struct ExtendsPost;

fn main() {
}