aboutsummaryrefslogblamecommitdiffstats
path: root/testing/tests/ui/elif.rs
blob: 650f2923efb420a47e3517a55a32e2294ee3b11e (plain) (tree)
1
2
3
4
5
6
7
8







                                                                              
use askama::Template;

#[derive(Template)]
#[template(source = "{% if true %}{% elif false %}{% endif %}", ext = "html")]
struct UnknownElif;

fn main() {
}