aboutsummaryrefslogblamecommitdiffstats
path: root/testing/tests/ui/loop_cycle_empty.rs
blob: 30d54fa4cf8e109621c45975a437a2039c645621 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                
use askama::Template;

#[derive(Template)]
#[template(
    source = r#"{% for v in values %}{{ loop.cycle([]) }}{{ v }},{% endfor %}"#,
    ext = "txt"
)]
struct ForCycleEmpty;

fn main() {
}