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

#[derive(Template)]
#[template(
    source = "Have a {%break%}, have a parsing error!",
    ext = "txt"
)]
struct MyTemplate;

fn main() {
}