askama/testing/tests/ui/union.rs
2024-11-11 00:42:08 +01:00

11 lines
153 B
Rust

use rinja::Template;
#[derive(Template)]
#[template(source = "a={{ a }} b={{ b }}", ext = "html")]
union Tmpl {
a: i32,
b: u32,
}
fn main() {}