mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 14:31:36 +00:00
10 lines
151 B
Rust
10 lines
151 B
Rust
use askama::Template;
|
|
|
|
#[derive(Template)]
|
|
#[template(path = "fuzzed-recursion-mul-deref.txt")]
|
|
struct Filtered {
|
|
s: &'static str,
|
|
}
|
|
|
|
fn main() {}
|