mirror of
https://github.com/askama-rs/askama.git
synced 2025-12-30 13:21:32 +00:00
13 lines
195 B
Rust
13 lines
195 B
Rust
// Test file specifically for parser bugs uncovered with fuzzing.
|
|
|
|
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(
|
|
source = r#"{{..{Ւ{"#,
|
|
ext = "html",
|
|
)]
|
|
struct T;
|
|
|
|
fn main() {}
|